@ndscnj/roomkit-web-vue3 25.12.24167 → 25.12.24171

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.
Files changed (54) hide show
  1. package/es/components/RoomFooter/VoteControl/MoreControlPC.vue.mjs +1 -1
  2. package/es/components/RoomFooter/VoteControl/index.mjs +1 -2
  3. package/es/components/RoomFooter/index/index.d.ts +4 -31
  4. package/es/components/RoomFooter/index/indexH5.vue.d.ts +1 -12
  5. package/es/components/RoomFooter/index/indexH5.vue.mjs +1 -1
  6. package/es/components/RoomFooter/index/indexH5.vue2.mjs +5 -20
  7. package/es/components/RoomSidebar/indexPC.vue.d.ts +0 -1
  8. package/es/components/RoomSidebar/indexPC.vue.mjs +0 -3
  9. package/es/components/RoomVote/index.d.ts +5 -17
  10. package/es/components/RoomVote/indexH5.vue.d.ts +5 -10
  11. package/es/components/RoomVote/indexH5.vue.mjs +2 -9
  12. package/es/components/RoomVote/indexH5.vue2.mjs +51 -0
  13. package/es/components/RoomVote/useRoomMoreHooks.mjs +43 -0
  14. package/es/conference.vue.d.ts +0 -1
  15. package/es/conference.vue.mjs +1 -1
  16. package/es/conference.vue2.mjs +6 -4
  17. package/es/index.mjs +82 -60
  18. package/lib/components/Chat/index/indexH5.vue.js +1 -1
  19. package/lib/components/ManageMember/MemberItem/indexH5.vue.js +1 -1
  20. package/lib/components/ManageMember/indexH5.vue.js +1 -1
  21. package/lib/components/RoomFooter/VoteControl/MoreControlPC.vue.js +1 -1
  22. package/lib/components/RoomFooter/VoteControl/index.js +1 -2
  23. package/lib/components/RoomFooter/index/index.d.ts +4 -31
  24. package/lib/components/RoomFooter/index/indexH5.vue.d.ts +1 -12
  25. package/lib/components/RoomFooter/index/indexH5.vue.js +2 -2
  26. package/lib/components/RoomFooter/index/indexH5.vue2.js +4 -19
  27. package/lib/components/RoomInvite/indexH5.vue.js +1 -1
  28. package/lib/components/RoomMore/indexH5.vue.js +1 -1
  29. package/lib/components/RoomSidebar/indexH5.vue.js +1 -1
  30. package/lib/components/RoomSidebar/indexPC.vue.d.ts +0 -1
  31. package/lib/components/RoomSidebar/indexPC.vue.js +0 -3
  32. package/lib/components/RoomVote/index.d.ts +5 -17
  33. package/lib/components/RoomVote/indexH5.vue.d.ts +5 -10
  34. package/lib/components/RoomVote/indexH5.vue.js +2 -9
  35. package/lib/components/RoomVote/indexH5.vue2.js +51 -0
  36. package/lib/components/RoomVote/useRoomMoreHooks.js +43 -0
  37. package/lib/conference.vue.d.ts +0 -1
  38. package/lib/conference.vue.js +1 -1
  39. package/lib/conference.vue2.js +6 -4
  40. package/lib/index.js +82 -60
  41. package/package.json +1 -1
  42. package/src/TUIRoom/components/RoomFooter/VoteControl/MoreControlH5.vue +108 -26
  43. package/src/TUIRoom/components/RoomFooter/VoteControl/MoreControlPC.vue +1 -1
  44. package/src/TUIRoom/components/RoomFooter/VoteControl/index.ts +1 -1
  45. package/src/TUIRoom/components/RoomFooter/index/indexH5.vue +2 -15
  46. package/src/TUIRoom/components/RoomSidebar/indexPC.vue +0 -3
  47. package/src/TUIRoom/components/RoomVote/indexH5.vue +118 -61
  48. package/src/TUIRoom/conference.vue +3 -3
  49. package/es/components/RoomFooter/VoteControl/MoreControlH5.vue.d.ts +0 -6
  50. package/es/components/RoomFooter/VoteControl/MoreControlH5.vue.mjs +0 -7
  51. package/es/components/RoomFooter/VoteControl/MoreControlH5.vue2.mjs +0 -59
  52. package/lib/components/RoomFooter/VoteControl/MoreControlH5.vue.d.ts +0 -6
  53. package/lib/components/RoomFooter/VoteControl/MoreControlH5.vue.js +0 -7
  54. package/lib/components/RoomFooter/VoteControl/MoreControlH5.vue2.js +0 -59
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./MoreControlPC.vue2.mjs";
2
2
  /* empty css */
3
3
  import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
4
- const MoreControlPc = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-997feff9"]]);
4
+ const MoreControlPc = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f5daa6bf"]]);
5
5
  export {
6
6
  MoreControlPc as default
7
7
  };
@@ -1,7 +1,6 @@
1
- import MoreControlH5 from "./MoreControlH5.vue.mjs";
2
1
  import MoreControlPc from "./MoreControlPC.vue.mjs";
3
2
  import { isMobile } from "../../../utils/environment.mjs";
4
- const MoreControl = isMobile ? MoreControlH5 : MoreControlPc;
3
+ const MoreControl = isMobile ? MoreControlPc : MoreControlPc;
5
4
  export {
6
5
  MoreControl as default
7
6
  };
@@ -1,35 +1,8 @@
1
- declare const Index: ({
2
- new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
3
- "onShow-overlay"?: ((...args: any[]) => any) | undefined;
4
- "onOn-vote"?: ((...args: any[]) => any) | undefined;
5
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
- "show-overlay": (...args: any[]) => void;
7
- "on-vote": (...args: any[]) => void;
8
- }, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
9
- P: {};
10
- B: {};
11
- D: {};
12
- C: {};
13
- M: {};
14
- Defaults: {};
15
- }, Readonly<{}> & Readonly<{
16
- "onShow-overlay"?: ((...args: any[]) => any) | undefined;
17
- "onOn-vote"?: ((...args: any[]) => any) | undefined;
18
- }>, {}, {}, {}, {}, {}>;
19
- __isFragment?: never;
20
- __isTeleport?: never;
21
- __isSuspense?: never;
22
- } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{
23
- "onShow-overlay"?: ((...args: any[]) => any) | undefined;
24
- "onOn-vote"?: ((...args: any[]) => any) | undefined;
25
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1
+ declare const Index: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
26
2
  "show-overlay": (...args: any[]) => void;
27
- "on-vote": (...args: any[]) => void;
28
- }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
29
- $slots: {
30
- contentH5?(_: {}): any;
31
- };
32
- })) | ({
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ "onShow-overlay"?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | ({
33
6
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
34
7
  "onOn-vote"?: ((...args: any[]) => any) | undefined;
35
8
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -1,17 +1,6 @@
1
- declare function __VLS_template(): {
2
- contentH5?(_: {}): any;
3
- };
4
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
2
  "show-overlay": (...args: any[]) => void;
6
- "on-vote": (...args: any[]) => void;
7
3
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
8
4
  "onShow-overlay"?: ((...args: any[]) => any) | undefined;
9
- "onOn-vote"?: ((...args: any[]) => any) | undefined;
10
5
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
12
6
  export default _default;
13
- type __VLS_WithTemplateSlots<T, S> = T & {
14
- new (): {
15
- $slots: S;
16
- };
17
- };
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./indexH5.vue2.mjs";
2
2
  /* empty css */
3
3
  import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
4
- const indexH5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-92597491"]]);
4
+ const indexH5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f3bbac91"]]);
5
5
  export {
6
6
  indexH5 as default
7
7
  };
@@ -1,4 +1,4 @@
1
- import { defineComponent, createElementBlock, openBlock, withDirectives, createCommentVNode, createVNode, unref, createBlock, withCtx, renderSlot } from "vue";
1
+ import { defineComponent, createElementBlock, openBlock, withDirectives, createCommentVNode, createVNode, unref, createBlock } from "vue";
2
2
  import _sfc_main$1 from "../../../core/components/AudioSetting/index.vue.mjs";
3
3
  import VideoSetting from "../../../core/components/VideoSetting/index.vue.mjs";
4
4
  import "@tencentcloud/uikit-base-component-vue3";
@@ -55,22 +55,17 @@ import _sfc_main$4 from "../ManageMemberControl.vue.mjs";
55
55
  import _sfc_main$2 from "../ChatControl.vue.mjs";
56
56
  import _sfc_main$3 from "../ManageStageControl.vue.mjs";
57
57
  import MemberApplyControl from "../ApplyControl/MemberApplyControl.vue.mjs";
58
- import MoreControl$1 from "../MoreControl/index.mjs";
58
+ import MoreControl from "../MoreControl/index.mjs";
59
59
  import AIControl from "../AIControl.vue.mjs";
60
- import MoreControl from "../VoteControl/index.mjs";
61
60
  import bus from "../../../hooks/useMitt.mjs";
62
61
  import useRoomFooter from "./useRoomFooterHooks.mjs";
63
62
  const _hoisted_1 = { class: "footer-container" };
64
63
  const _sfc_main = /* @__PURE__ */ defineComponent({
65
64
  __name: "indexH5",
66
- emits: ["show-overlay", "on-vote"],
65
+ emits: ["show-overlay"],
67
66
  setup(__props, { emit: __emit }) {
68
67
  const { roomStore, isMaster, isAdmin, isAudience } = useRoomFooter();
69
68
  const emit = __emit;
70
- const onVote = (data) => {
71
- console.log(data, "data111");
72
- emit("on-vote", { code: data.visible, message: "vote" });
73
- };
74
69
  function handleControlClick(name) {
75
70
  bus.emit("experience-communication", name);
76
71
  }
@@ -91,21 +86,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
91
86
  }, null, 8, ["display-mode"])), [
92
87
  [unref(vTap), () => handleControlClick("videoControl")]
93
88
  ]) : createCommentVNode("", true),
94
- createVNode(unref(MoreControl), {
95
- class: "center-container-item",
96
- onClick: _cache[0] || (_cache[0] = ($event) => handleControlClick("voteControl")),
97
- onOnVote: onVote
98
- }, {
99
- contentH5: withCtx(() => [
100
- renderSlot(_ctx.$slots, "contentH5", {}, void 0, true)
101
- ]),
102
- _: 3
103
- }),
104
89
  !unref(roomStore).isSpeakAfterTakingSeatMode ? withDirectives((openBlock(), createBlock(_sfc_main$2, { key: 2 }, null, 512)), [
105
90
  [unref(vTap), () => handleControlClick("chatControl")]
106
91
  ]) : createCommentVNode("", true),
107
92
  createVNode(AIControl, {
108
- onClick: _cache[1] || (_cache[1] = ($event) => handleControlClick("AIControl"))
93
+ onClick: _cache[0] || (_cache[0] = ($event) => handleControlClick("AIControl"))
109
94
  }),
110
95
  unref(roomStore).isSpeakAfterTakingSeatMode && (unref(isMaster) || unref(isAdmin)) ? withDirectives((openBlock(), createBlock(_sfc_main$3, { key: 3 }, null, 512)), [
111
96
  [unref(vTap), () => handleControlClick("MasterApplyControl")]
@@ -116,7 +101,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
116
101
  withDirectives(createVNode(_sfc_main$4, null, null, 512), [
117
102
  [unref(vTap), () => handleControlClick("manageMemberControl")]
118
103
  ]),
119
- withDirectives(createVNode(unref(MoreControl$1), { onShowOverlay: handleShowOverlay }, null, 512), [
104
+ withDirectives(createVNode(unref(MoreControl), { onShowOverlay: handleShowOverlay }, null, 512), [
120
105
  [unref(vTap), () => handleControlClick("moreControl")]
121
106
  ])
122
107
  ]);
@@ -1,6 +1,5 @@
1
1
  declare function __VLS_template(): {
2
2
  content?(_: {}): any;
3
- contentH5?(_: {}): any;
4
3
  };
5
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>;
6
5
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
@@ -27,9 +27,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
27
27
  content: withCtx(() => [
28
28
  renderSlot(_ctx.$slots, "content")
29
29
  ]),
30
- contentH5: withCtx(() => [
31
- renderSlot(_ctx.$slots, "contentH5")
32
- ]),
33
30
  _: 3
34
31
  })) : createCommentVNode("", true),
35
32
  unref(sidebarName) == "more" ? (openBlock(), createBlock(unref(Index$2), { key: 2 })) : createCommentVNode("", true),
@@ -1,20 +1,8 @@
1
- declare const Index: ({
2
- 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, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & 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 () => {
14
- $slots: {
15
- contentH5?(_: {}): any;
16
- };
17
- })) | ({
1
+ declare const Index: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ "on-close-contact": (...args: any[]) => void;
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ "onOn-close-contact"?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | ({
18
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, {
19
7
  P: {};
20
8
  B: {};
@@ -1,11 +1,6 @@
1
- declare function __VLS_template(): {
2
- contentH5?(_: {}): 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>>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ "on-close-contact": (...args: any[]) => void;
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ "onOn-close-contact"?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
6
  export default _default;
7
- type __VLS_WithTemplateSlots<T, S> = T & {
8
- new (): {
9
- $slots: S;
10
- };
11
- };
@@ -1,14 +1,7 @@
1
- import { createElementBlock, openBlock, renderSlot } from "vue";
1
+ import _sfc_main from "./indexH5.vue2.mjs";
2
2
  /* empty css */
3
3
  import _export_sfc from "../../_virtual/_plugin-vue_export-helper.mjs";
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, "contentH5", {}, void 0, true)
9
- ]);
10
- }
11
- const indexH5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-6c9f3c67"]]);
4
+ const indexH5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-939000cb"]]);
12
5
  export {
13
6
  indexH5 as default
14
7
  };
@@ -0,0 +1,51 @@
1
+ import { defineComponent, createElementBlock, openBlock, createElementVNode, withDirectives, toDisplayString, unref, createTextVNode, Fragment, renderList, createVNode } from "vue";
2
+ import useRoomMoreHooks from "./useRoomMoreHooks.mjs";
3
+ import { IconCopy } from "@tencentcloud/uikit-base-component-vue3";
4
+ import vTap from "../../directives/vTap.mjs";
5
+ const _hoisted_1 = { class: "contact-container-main" };
6
+ const _hoisted_2 = { class: "contact-title-main" };
7
+ const _hoisted_3 = { class: "cancel" };
8
+ const _hoisted_4 = { class: "contact-title" };
9
+ const _hoisted_5 = { class: "contact-content" };
10
+ const _hoisted_6 = { class: "contact-bottom" };
11
+ const _sfc_main = /* @__PURE__ */ defineComponent({
12
+ __name: "indexH5",
13
+ emits: ["on-close-contact"],
14
+ setup(__props, { emit: __emit }) {
15
+ const { t, onCopy, contactContentList } = useRoomMoreHooks();
16
+ const emit = __emit;
17
+ function handleCloseContact() {
18
+ emit("on-close-contact");
19
+ }
20
+ return (_ctx, _cache) => {
21
+ return openBlock(), createElementBlock("div", _hoisted_1, [
22
+ createElementVNode("div", _hoisted_2, [
23
+ createElementVNode("div", null, toDisplayString(unref(t)("Contact us")), 1),
24
+ withDirectives((openBlock(), createElementBlock("span", _hoisted_3, [
25
+ createTextVNode(toDisplayString(unref(t)("Cancel")), 1)
26
+ ])), [
27
+ [unref(vTap), handleCloseContact]
28
+ ])
29
+ ]),
30
+ (openBlock(true), createElementBlock(Fragment, null, renderList(unref(contactContentList), (item) => {
31
+ return openBlock(), createElementBlock("div", {
32
+ key: item.id,
33
+ class: "contact-content-main"
34
+ }, [
35
+ createElementVNode("span", _hoisted_4, toDisplayString(unref(t)(item.title)), 1),
36
+ createElementVNode("span", _hoisted_5, toDisplayString(item.content), 1),
37
+ withDirectives(createVNode(unref(IconCopy), { class: "copy" }, null, 512), [
38
+ [unref(vTap), () => unref(onCopy)(item.copyLink)]
39
+ ])
40
+ ]);
41
+ }), 128)),
42
+ createElementVNode("span", _hoisted_6, toDisplayString(unref(t)(
43
+ "If you have any questions, please feel free to join our QQ group or send an email"
44
+ )), 1)
45
+ ]);
46
+ };
47
+ }
48
+ });
49
+ export {
50
+ _sfc_main as default
51
+ };
@@ -0,0 +1,43 @@
1
+ import { computed } from "vue";
2
+ import { TUIToast, TOAST_TYPE } from "@tencentcloud/uikit-base-component-vue3";
3
+ import i18n, { useI18n } from "../../locales/index.mjs";
4
+ import "../../utils/environment.mjs";
5
+ import { clipBoard } from "../../utils/adapter.mjs";
6
+ function useRoomMoreHooks() {
7
+ const { t } = useI18n();
8
+ const groupNumber = "770645461";
9
+ const email = "chaooliang@tencent.com";
10
+ async function onCopy(value) {
11
+ try {
12
+ await clipBoard(value);
13
+ TUIToast({
14
+ message: t("Copied successfully"),
15
+ type: TOAST_TYPE.SUCCESS
16
+ });
17
+ } catch (error) {
18
+ TUIToast({
19
+ message: t("Copied failure"),
20
+ type: TOAST_TYPE.ERROR
21
+ });
22
+ }
23
+ }
24
+ const isZH = computed(() => i18n.global.locale.value === "zh-CN");
25
+ const contactContentList = [
26
+ { id: 1, title: "group chat", content: groupNumber, copyLink: groupNumber },
27
+ { id: 2, title: "Email", content: email, copyLink: email }
28
+ ];
29
+ const handleClick = () => {
30
+ window.open("https://zhiliao.qq.com/s/c5GY7HIM62CK", "_blank");
31
+ };
32
+ return {
33
+ t,
34
+ onCopy,
35
+ contactContentList,
36
+ email,
37
+ handleClick,
38
+ isZH
39
+ };
40
+ }
41
+ export {
42
+ useRoomMoreHooks as default
43
+ };
@@ -16,7 +16,6 @@ declare function enterRoom(options: {
16
16
  declare function resetStore(): void;
17
17
  declare function __VLS_template(): {
18
18
  content?(_: {}): any;
19
- contentH5?(_: {}): any;
20
19
  };
21
20
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
22
21
  displayMode: "permanent" | "wake-up";
@@ -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-5135c8c9"]]);
5
+ const ConferenceMainView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4dd66a12"]]);
6
6
  export {
7
7
  ConferenceMainView as default
8
8
  };
@@ -274,16 +274,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
274
274
  class: "footer",
275
275
  onShowOverlay: handleShowOverlay,
276
276
  onOnVote: onVote
277
- }, null, 512), [
277
+ }, {
278
+ content: withCtx(() => [
279
+ renderSlot(_ctx.$slots, "content", {}, void 0, true)
280
+ ]),
281
+ _: 3
282
+ }, 512), [
278
283
  [vShow, unref(showRoomTool)]
279
284
  ]),
280
285
  createVNode(unref(Index$1), { onOnVote: onVote }, {
281
286
  content: withCtx(() => [
282
287
  renderSlot(_ctx.$slots, "content", {}, void 0, true)
283
288
  ]),
284
- contentH5: withCtx(() => [
285
- renderSlot(_ctx.$slots, "contentH5", {}, void 0, true)
286
- ]),
287
289
  _: 3
288
290
  }),
289
291
  createVNode(RoomSetting),
package/es/index.mjs CHANGED
@@ -3664,13 +3664,7 @@ to {
3664
3664
  .tool-box .tool-box-item[data-v-34681937]:hover {
3665
3665
  border-radius: 8px;
3666
3666
  background-color: var(--list-color-hover);
3667
- }.ndsc-img-box[data-v-2a47be79] {
3668
- width: 24px;
3669
- height: 24px;
3670
- }.ndsc-img-box[data-v-997feff9] {
3671
- width: 24px;
3672
- height: 24px;
3673
- }.footer-container[data-v-92597491] {
3667
+ }.footer-container[data-v-f3bbac91] {
3674
3668
  position: absolute;
3675
3669
  bottom: 0;
3676
3670
  display: flex;
@@ -3934,6 +3928,9 @@ to {
3934
3928
  }
3935
3929
  .footer .mirror-container .mirror-text[data-v-21a63691] {
3936
3930
  margin-left: 4px;
3931
+ }.ndsc-img-box[data-v-f5daa6bf] {
3932
+ width: 24px;
3933
+ height: 24px;
3937
3934
  }.footer-container[data-v-4afcea78] {
3938
3935
  position: absolute;
3939
3936
  bottom: 0;
@@ -4954,70 +4951,95 @@ to {
4954
4951
  right: 0;
4955
4952
  z-index: 101;
4956
4953
  height: 100%;
4957
- }.more-container[data-v-6c9f3c67] {
4958
- padding: 20px;
4954
+ }span[data-v-939000cb] {
4955
+ padding-right: 5px;
4956
+ font-size: 12px;
4957
+ font-weight: 500;
4958
+ line-height: 17px;
4959
4959
  }
4960
- .more-container .more-title[data-v-6c9f3c67] {
4960
+ .contact-container-main[data-v-939000cb] {
4961
+ position: fixed;
4962
+ bottom: 0;
4961
4963
  display: flex;
4962
- align-items: center;
4964
+ flex-direction: column;
4965
+ width: 100%;
4966
+ padding-bottom: 4vh;
4967
+ border-radius: 15px 15px 0 0;
4968
+ animation-name: popup-939000cb;
4969
+ animation-duration: 200ms;
4970
+ background-color: var(--bg-color-operate);
4963
4971
  }
4964
- .more-container .more-title .email-icon[data-v-6c9f3c67] {
4965
- color: var(--uikit-color-gray-7);
4972
+ @keyframes popup-939000cb {
4973
+ from {
4974
+ transform: scaleY(0);
4975
+ transform-origin: bottom;
4966
4976
  }
4967
- .more-container .more-title .more-notice[data-v-6c9f3c67] {
4968
- width: 100%;
4969
- height: 22px;
4970
- padding-left: 8px;
4971
- font-size: 14px;
4972
- font-weight: 400;
4973
- line-height: 22px;
4974
- color: var(--text-color-primary);
4977
+ to {
4978
+ transform: scaleY(1);
4979
+ transform-origin: bottom;
4975
4980
  }
4976
- .more-container .more-item[data-v-6c9f3c67] {
4977
- position: relative;
4981
+ }
4982
+ .contact-container-main .contact-title-main[data-v-939000cb] {
4978
4983
  display: flex;
4979
- flex-direction: column;
4984
+ flex-direction: row;
4985
+ align-items: center;
4986
+ padding: 30px 0 20px 25px;
4987
+ font-family: "PingFang SC";
4988
+ font-size: 20px;
4989
+ font-style: normal;
4990
+ font-weight: 500;
4991
+ line-height: 24px;
4992
+ color: var(--text-color-primary);
4980
4993
  }
4981
- .more-container .more-item[data-v-6c9f3c67]:not(:first-child) {
4982
- margin-top: 20px;
4994
+ .contact-container-main .contact-content-main[data-v-939000cb] {
4995
+ display: flex;
4996
+ flex-direction: row;
4997
+ align-items: center;
4998
+ width: 90%;
4999
+ height: 15%;
5000
+ padding: 0 0 0 25px;
5001
+ margin-bottom: 10px;
4983
5002
  }
4984
- .more-container .more-item:not(:first-child) .item-title[data-v-6c9f3c67] {
4985
- width: 100%;
4986
- padding-bottom: 8px;
5003
+ .contact-container-main .contact-title[data-v-939000cb],
5004
+ .contact-container-main .contact-content[data-v-939000cb] {
5005
+ width: 28%;
5006
+ font-family: "PingFang SC";
4987
5007
  font-size: 14px;
5008
+ font-style: normal;
4988
5009
  font-weight: 400;
4989
- line-height: 22px;
5010
+ line-height: 20px;
5011
+ white-space: nowrap;
4990
5012
  color: var(--text-color-primary);
4991
5013
  }
4992
- .more-container .more-item:not(:first-child) .more-content[data-v-6c9f3c67] {
4993
- position: relative;
4994
- box-sizing: border-box;
4995
- display: inline-block;
4996
- flex: 1;
4997
- height: 42px;
4998
- padding: 10px 30px 10px 16px;
5014
+ .contact-container-main .contact-content[data-v-939000cb] {
5015
+ width: 62%;
4999
5016
  overflow: hidden;
5000
5017
  font-size: 14px;
5001
- font-weight: 500;
5002
- line-height: 22px;
5003
5018
  text-overflow: ellipsis;
5004
5019
  white-space: nowrap;
5005
- border-radius: 8px;
5006
- outline: none;
5007
- transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
5008
- color: var(--text-color-primary);
5009
- background-color: var(--bg-color-input);
5010
- border: 1px solid var(--stroke-color-module);
5020
+ color: var(--text-color-secondary);
5011
5021
  }
5012
- .more-container .more-item:not(:first-child) .copy-icon[data-v-6c9f3c67] {
5013
- position: absolute;
5014
- top: 45px;
5015
- right: 10px;
5016
- display: flex;
5017
- align-items: center;
5018
- justify-content: center;
5019
- cursor: pointer;
5022
+ .contact-container-main .contact-bottom[data-v-939000cb] {
5023
+ width: 90%;
5024
+ padding-left: 40px;
5025
+ font-family: "PingFang SC";
5026
+ font-size: 12px;
5027
+ font-style: normal;
5028
+ font-weight: 400;
5029
+ line-height: 17px;
5030
+ text-align: center;
5031
+ color: var(--text-color-secondary);
5032
+ }
5033
+ .contact-container-main .copy[data-v-939000cb] {
5034
+ margin-left: 30px;
5020
5035
  color: var(--text-color-link);
5036
+ }
5037
+ .cancel[data-v-939000cb] {
5038
+ flex: 1;
5039
+ padding-right: 30px;
5040
+ font-size: 16px;
5041
+ font-weight: 400;
5042
+ text-align: end;
5021
5043
  }.more-container[data-v-41107c5f] {
5022
5044
  padding: 20px;
5023
5045
  }
@@ -9111,7 +9133,7 @@ body, html {
9111
9133
  }
9112
9134
  .tui-room :not([class|=el]) {
9113
9135
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
9114
- }.tui-room[data-v-5135c8c9] {
9136
+ }.tui-room[data-v-4dd66a12] {
9115
9137
  position: relative;
9116
9138
  display: flex;
9117
9139
  flex-direction: column;
@@ -9123,7 +9145,7 @@ body, html {
9123
9145
  text-align: left;
9124
9146
  background-color: var(--bg-color-topbar);
9125
9147
  }
9126
- .tui-room .header[data-v-5135c8c9] {
9148
+ .tui-room .header[data-v-4dd66a12] {
9127
9149
  position: absolute;
9128
9150
  top: 0;
9129
9151
  left: 0;
@@ -9134,20 +9156,20 @@ body, html {
9134
9156
  border-bottom: 1px solid var(--stroke-color-primary);
9135
9157
  box-shadow: 0 1px 0 var(--uikit-color-black-8);
9136
9158
  }
9137
- .tui-room .content[data-v-5135c8c9] {
9159
+ .tui-room .content[data-v-4dd66a12] {
9138
9160
  position: absolute;
9139
9161
  top: 0;
9140
9162
  width: 100%;
9141
9163
  height: 100%;
9142
9164
  background-color: var(--bg-color-topbar);
9143
9165
  }
9144
- .tui-room.tui-room-h5[data-v-5135c8c9] {
9166
+ .tui-room.tui-room-h5[data-v-4dd66a12] {
9145
9167
  width: 100%;
9146
9168
  min-width: 350px;
9147
9169
  height: 100%;
9148
9170
  min-height: 525px;
9149
9171
  }
9150
- #roomContainer.chat-room[data-v-5135c8c9] {
9172
+ #roomContainer.chat-room[data-v-4dd66a12] {
9151
9173
  position: absolute;
9152
9174
  top: 0;
9153
9175
  right: 0;
@@ -9159,8 +9181,8 @@ body, html {
9159
9181
  margin: auto;
9160
9182
  border-radius: 10px;
9161
9183
  }
9162
- #roomContainer.tui-room-h5[data-v-5135c8c9],
9163
- #roomContainer .chat-room[data-v-5135c8c9] {
9184
+ #roomContainer.tui-room-h5[data-v-4dd66a12],
9185
+ #roomContainer .chat-room[data-v-4dd66a12] {
9164
9186
  width: 100%;
9165
9187
  height: 100%;
9166
9188
  }.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 indexH5_vue_vue_type_script_setup_true_lang = ;/* empty css */
3
+ const indexH5_vue_vue_type_script_setup_true_lang = require("./indexH5.vue2.js");
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexH5 = /* @__PURE__ */ _pluginVue_exportHelper.default(indexH5_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-a8c21a66"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexH5_vue_vue_type_script_setup_true_lang = ;/* empty css */
3
+ const indexH5_vue_vue_type_script_setup_true_lang = require("./indexH5.vue2.js");
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexH5 = /* @__PURE__ */ _pluginVue_exportHelper.default(indexH5_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-04bc5b87"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexH5_vue_vue_type_script_setup_true_lang = ;/* empty css */
3
+ const indexH5_vue_vue_type_script_setup_true_lang = require("./indexH5.vue2.js");
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexH5 = /* @__PURE__ */ _pluginVue_exportHelper.default(indexH5_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-524b1604"]]);
@@ -3,5 +3,5 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
3
3
  const MoreControlPC_vue_vue_type_script_setup_true_lang = require("./MoreControlPC.vue2.js");
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
6
- const MoreControlPc = /* @__PURE__ */ _pluginVue_exportHelper.default(MoreControlPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-997feff9"]]);
6
+ const MoreControlPc = /* @__PURE__ */ _pluginVue_exportHelper.default(MoreControlPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-f5daa6bf"]]);
7
7
  exports.default = MoreControlPc;
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const MoreControlH5 = require("./MoreControlH5.vue.js");
4
3
  const MoreControlPC = require("./MoreControlPC.vue.js");
5
4
  const environment = require("../../../utils/environment.js");
6
- const MoreControl = environment.isMobile ? MoreControlH5.default : MoreControlPC.default;
5
+ const MoreControl = environment.isMobile ? MoreControlPC.default : MoreControlPC.default;
7
6
  exports.default = MoreControl;