@ndscnj/roomkit-web-vue3 25.12.2412 → 25.12.2414

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 (47) hide show
  1. package/es/components/RoomFooter/index/indexPC.vue.mjs +1 -1
  2. package/es/components/RoomFooter/index/indexPC.vue2.mjs +2 -2
  3. package/es/components/RoomFooter/voteControl.vue.d.ts +15 -0
  4. package/es/components/RoomFooter/voteControl.vue.mjs +7 -0
  5. package/es/components/RoomFooter/voteControl.vue2.mjs +71 -0
  6. package/es/components/RoomVote/indexPC.vue.mjs +1 -1
  7. package/es/components/RoomVote/indexPC.vue2.mjs +2 -2
  8. package/es/constants/icon.d.ts +0 -2
  9. package/es/constants/icon.mjs +0 -2
  10. package/es/index.mjs +152 -180
  11. package/lib/components/RoomFooter/index/indexPC.vue.js +1 -1
  12. package/lib/components/RoomFooter/index/indexPC.vue2.js +6 -6
  13. package/lib/components/RoomFooter/voteControl.vue.d.ts +15 -0
  14. package/lib/components/RoomFooter/voteControl.vue.js +7 -0
  15. package/lib/components/RoomFooter/voteControl.vue2.js +71 -0
  16. package/lib/components/RoomVote/indexPC.vue.js +1 -1
  17. package/lib/components/RoomVote/indexPC.vue2.js +2 -2
  18. package/lib/constants/icon.d.ts +0 -2
  19. package/lib/constants/icon.js +0 -2
  20. package/lib/index.js +152 -180
  21. package/package.json +1 -1
  22. package/src/TUIRoom/components/RoomFooter/index/indexPC.vue +1 -1
  23. package/src/TUIRoom/components/RoomFooter/voteControl.vue +2 -3
  24. package/src/TUIRoom/components/RoomVote/indexPC.vue +2 -2
  25. package/src/TUIRoom/constants/icon.ts +0 -2
  26. package/es/components/RoomFooter/voteControl/VoteControlH5.vue.d.ts +0 -6
  27. package/es/components/RoomFooter/voteControl/VoteControlH5.vue.mjs +0 -7
  28. package/es/components/RoomFooter/voteControl/VoteControlH5.vue2.mjs +0 -105
  29. package/es/components/RoomFooter/voteControl/VoteControlPC.vue.d.ts +0 -6
  30. package/es/components/RoomFooter/voteControl/VoteControlPC.vue.mjs +0 -55
  31. package/es/components/RoomFooter/voteControl/VoteControlPC.vue2.mjs +0 -4
  32. package/es/components/RoomFooter/voteControl/index.d.ts +0 -10
  33. package/es/components/RoomFooter/voteControl/index.mjs +0 -7
  34. package/es/components/RoomFooter/voteControl/useVoteControlHooks.mjs +0 -22
  35. package/lib/components/RoomFooter/voteControl/VoteControlH5.vue.d.ts +0 -6
  36. package/lib/components/RoomFooter/voteControl/VoteControlH5.vue.js +0 -7
  37. package/lib/components/RoomFooter/voteControl/VoteControlH5.vue2.js +0 -105
  38. package/lib/components/RoomFooter/voteControl/VoteControlPC.vue.d.ts +0 -6
  39. package/lib/components/RoomFooter/voteControl/VoteControlPC.vue.js +0 -55
  40. package/lib/components/RoomFooter/voteControl/VoteControlPC.vue2.js +0 -4
  41. package/lib/components/RoomFooter/voteControl/index.d.ts +0 -10
  42. package/lib/components/RoomFooter/voteControl/index.js +0 -7
  43. package/lib/components/RoomFooter/voteControl/useVoteControlHooks.js +0 -22
  44. package/src/TUIRoom/components/RoomFooter/voteControl/VoteControlH5.vue +0 -122
  45. package/src/TUIRoom/components/RoomFooter/voteControl/VoteControlPC.vue +0 -35
  46. package/src/TUIRoom/components/RoomFooter/voteControl/index.ts +0 -8
  47. package/src/TUIRoom/components/RoomFooter/voteControl/useVoteControlHooks.ts +0 -23
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./indexPC.vue2.mjs";
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-3a373c3a"]]);
4
+ const indexPc = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f808bd91"]]);
5
5
  export {
6
6
  indexPc as default
7
7
  };
@@ -65,7 +65,7 @@ import VirtualBackground from "../VirtualBackground.vue.mjs";
65
65
  import AIControl from "../AIControl.vue.mjs";
66
66
  import BasicBeauty from "../BasicBeauty.vue.mjs";
67
67
  import bus from "../../../hooks/useMitt.mjs";
68
- import VoteControl from "../voteControl/index.mjs";
68
+ import voteControl from "../voteControl.vue.mjs";
69
69
  import useRoomFooter from "./useRoomFooterHooks.mjs";
70
70
  const _hoisted_1 = { class: "footer-container" };
71
71
  const _hoisted_2 = { class: "left-container" };
@@ -137,7 +137,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
137
137
  class: "center-container-item",
138
138
  onClick: _cache[9] || (_cache[9] = ($event) => handleControlClick("MasterApplyControl"))
139
139
  })) : createCommentVNode("", true),
140
- createVNode(unref(VoteControl), {
140
+ createVNode(voteControl, {
141
141
  class: "center-container-item",
142
142
  onClick: _cache[10] || (_cache[10] = ($event) => handleControlClick("voteControl")),
143
143
  onOnVote: onVote
@@ -0,0 +1,15 @@
1
+ declare function __VLS_template(): {
2
+ content?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ "on-vote": (...args: any[]) => void;
6
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
+ "onOn-vote"?: ((...args: any[]) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
9
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
10
+ export default _default;
11
+ type __VLS_WithTemplateSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,7 @@
1
+ import _sfc_main from "./voteControl.vue2.mjs";
2
+ /* empty css */
3
+ import _export_sfc from "../../_virtual/_plugin-vue_export-helper.mjs";
4
+ const voteControl = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c9bb5a2b"]]);
5
+ export {
6
+ voteControl as default
7
+ };
@@ -0,0 +1,71 @@
1
+ import { defineComponent, computed, ref, watch, createElementBlock, openBlock, createVNode, createCommentVNode, unref, withCtx, renderSlot } from "vue";
2
+ import "../../services/main.mjs";
3
+ import { roomService } from "../../services/roomService.mjs";
4
+ import { useI18n } from "../../locales/index.mjs";
5
+ import "@tencentcloud/tuiroom-engine-js";
6
+ import "../../utils/environment.mjs";
7
+ import "mitt";
8
+ import "../../services/manager/roomActionManager.mjs";
9
+ import "@tencentcloud/tui-core";
10
+ import IconButton from "../common/base/IconButton.vue.mjs";
11
+ import { IconAIIcon } from "@tencentcloud/uikit-base-component-vue3";
12
+ import Index from "../RoomVote/index.mjs";
13
+ const _hoisted_1 = { class: "vote-control-container" };
14
+ const _hoisted_2 = {
15
+ key: 0,
16
+ class: "contact-container"
17
+ };
18
+ const _sfc_main = /* @__PURE__ */ defineComponent({
19
+ __name: "voteControl",
20
+ emits: ["on-vote"],
21
+ setup(__props, { emit: __emit }) {
22
+ const { basicStore } = roomService;
23
+ const isSidebarOpen = computed(() => basicStore.isSidebarOpen);
24
+ const sidebarName = computed(() => basicStore.sidebarName);
25
+ const { t } = useI18n();
26
+ const showToolBox = ref(false);
27
+ watch(isSidebarOpen, (newValue) => {
28
+ showToolBox.value = newValue && false;
29
+ });
30
+ const emit = __emit;
31
+ function toggleToolBox() {
32
+ console.log(showToolBox.value, "0000");
33
+ showToolBox.value = !showToolBox.value;
34
+ emit("on-vote", {
35
+ name: "onVote",
36
+ visible: showToolBox.value
37
+ });
38
+ }
39
+ function handleOnCloseContact() {
40
+ showToolBox.value = false;
41
+ }
42
+ return (_ctx, _cache) => {
43
+ return openBlock(), createElementBlock("div", _hoisted_1, [
44
+ createVNode(IconButton, {
45
+ "is-active": sidebarName.value === "vote",
46
+ title: unref(t)("Vote"),
47
+ onClickIcon: toggleToolBox
48
+ }, {
49
+ default: withCtx(() => [
50
+ createVNode(unref(IconAIIcon), { size: "24" })
51
+ ]),
52
+ _: 1
53
+ }, 8, ["is-active", "title"]),
54
+ !isSidebarOpen.value && showToolBox.value ? (openBlock(), createElementBlock("div", _hoisted_2, [
55
+ createVNode(unref(Index), {
56
+ ref: "contactRef",
57
+ onOnCloseContact: handleOnCloseContact
58
+ }, {
59
+ content: withCtx(() => [
60
+ renderSlot(_ctx.$slots, "content", {}, void 0, true)
61
+ ]),
62
+ _: 3
63
+ }, 512)
64
+ ])) : createCommentVNode("", true)
65
+ ]);
66
+ };
67
+ }
68
+ });
69
+ export {
70
+ _sfc_main as default
71
+ };
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./indexPC.vue2.mjs";
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-11728c2b"]]);
4
+ const indexPC = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d1a96ffd"]]);
5
5
  export {
6
6
  indexPC as default
7
7
  };
@@ -12,7 +12,7 @@ const _hoisted_5 = { class: "item-title" };
12
12
  const _hoisted_6 = { class: "more-item" };
13
13
  const _hoisted_7 = { class: "item-title" };
14
14
  const _hoisted_8 = { class: "more-content" };
15
- const _hoisted_9 = { class: "contact-container" };
15
+ const _hoisted_9 = { class: "more-item" };
16
16
  const _sfc_main = /* @__PURE__ */ defineComponent({
17
17
  __name: "indexPC",
18
18
  setup(__props) {
@@ -21,7 +21,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
21
21
  return openBlock(), createElementBlock("div", _hoisted_1, [
22
22
  createElementVNode("div", _hoisted_2, [
23
23
  createVNode(unref(IconEmail), { class: "email-icon" }),
24
- createElementVNode("div", _hoisted_3, toDisplayString(unref(t)("Vote")), 1)
24
+ createElementVNode("div", _hoisted_3, toDisplayString(unref(t)("If you have any questions, please email us.")), 1)
25
25
  ]),
26
26
  unref(isZH) ? (openBlock(), createElementBlock("div", _hoisted_4, [
27
27
  createElementVNode("div", _hoisted_5, toDisplayString(unref(t)("Join our product discussion group")), 1),
@@ -20,8 +20,6 @@ export declare enum ICON_NAME {
20
20
  ManageMember = "manage-member",
21
21
  More = "more",
22
22
  MoreActive = "more-active",
23
- Vote = "vote",
24
- VoteActive = "vote-active",
25
23
  SettingActive = "setting-active",
26
24
  Setting = "setting",
27
25
  LineArrowUp = "line-arrow-up",
@@ -20,8 +20,6 @@ var ICON_NAME = /* @__PURE__ */ ((ICON_NAME2) => {
20
20
  ICON_NAME2["ManageMember"] = "manage-member";
21
21
  ICON_NAME2["More"] = "more";
22
22
  ICON_NAME2["MoreActive"] = "more-active";
23
- ICON_NAME2["Vote"] = "vote";
24
- ICON_NAME2["VoteActive"] = "vote-active";
25
23
  ICON_NAME2["SettingActive"] = "setting-active";
26
24
  ICON_NAME2["Setting"] = "setting";
27
25
  ICON_NAME2["LineArrowUp"] = "line-arrow-up";
package/es/index.mjs CHANGED
@@ -3928,45 +3928,170 @@ to {
3928
3928
  }
3929
3929
  .footer .mirror-container .mirror-text[data-v-21a63691] {
3930
3930
  margin-left: 4px;
3931
- }.show-more-content[data-v-1506794c] {
3932
- position: absolute;
3933
- bottom: 15px;
3934
- left: 5%;
3935
- width: 90%;
3936
- height: 17vh;
3937
- padding: 10px;
3938
- border-radius: 13px;
3939
- animation-name: popup-1506794c;
3931
+ }span[data-v-939000cb] {
3932
+ padding-right: 5px;
3933
+ font-size: 12px;
3934
+ font-weight: 500;
3935
+ line-height: 17px;
3936
+ }
3937
+ .contact-container-main[data-v-939000cb] {
3938
+ position: fixed;
3939
+ bottom: 0;
3940
+ display: flex;
3941
+ flex-direction: column;
3942
+ width: 100%;
3943
+ padding-bottom: 4vh;
3944
+ border-radius: 15px 15px 0 0;
3945
+ animation-name: popup-939000cb;
3940
3946
  animation-duration: 200ms;
3941
3947
  background-color: var(--bg-color-operate);
3942
3948
  }
3943
- @keyframes popup-1506794c {
3949
+ @keyframes popup-939000cb {
3944
3950
  from {
3945
- bottom: 0;
3951
+ transform: scaleY(0);
3952
+ transform-origin: bottom;
3946
3953
  }
3947
3954
  to {
3948
- bottom: 15px;
3955
+ transform: scaleY(1);
3956
+ transform-origin: bottom;
3949
3957
  }
3950
3958
  }
3951
- .control-compent[data-v-1506794c] {
3959
+ .contact-container-main .contact-title-main[data-v-939000cb] {
3952
3960
  display: flex;
3961
+ flex-direction: row;
3962
+ align-items: center;
3963
+ padding: 30px 0 20px 25px;
3964
+ font-family: "PingFang SC";
3965
+ font-size: 20px;
3966
+ font-style: normal;
3967
+ font-weight: 500;
3968
+ line-height: 24px;
3969
+ color: var(--text-color-primary);
3953
3970
  }
3954
- .close[data-v-1506794c] {
3955
- position: relative;
3956
- top: 10%;
3971
+ .contact-container-main .contact-content-main[data-v-939000cb] {
3957
3972
  display: flex;
3973
+ flex-direction: row;
3958
3974
  align-items: center;
3959
- justify-content: center;
3960
- width: 100%;
3961
- padding: 10px;
3975
+ width: 90%;
3976
+ height: 15%;
3977
+ padding: 0 0 0 25px;
3978
+ margin-bottom: 10px;
3979
+ }
3980
+ .contact-container-main .contact-title[data-v-939000cb],
3981
+ .contact-container-main .contact-content[data-v-939000cb] {
3982
+ width: 28%;
3983
+ font-family: "PingFang SC";
3984
+ font-size: 14px;
3962
3985
  font-style: normal;
3963
3986
  font-weight: 400;
3964
- line-height: 24px;
3987
+ line-height: 20px;
3988
+ white-space: nowrap;
3989
+ color: var(--text-color-primary);
3990
+ }
3991
+ .contact-container-main .contact-content[data-v-939000cb] {
3992
+ width: 62%;
3993
+ overflow: hidden;
3994
+ font-size: 14px;
3995
+ text-overflow: ellipsis;
3996
+ white-space: nowrap;
3997
+ color: var(--text-color-secondary);
3998
+ }
3999
+ .contact-container-main .contact-bottom[data-v-939000cb] {
4000
+ width: 90%;
4001
+ padding-left: 40px;
4002
+ font-family: "PingFang SC";
4003
+ font-size: 12px;
4004
+ font-style: normal;
4005
+ font-weight: 400;
4006
+ line-height: 17px;
3965
4007
  text-align: center;
4008
+ color: var(--text-color-secondary);
4009
+ }
4010
+ .contact-container-main .copy[data-v-939000cb] {
4011
+ margin-left: 30px;
4012
+ color: var(--text-color-link);
4013
+ }
4014
+ .cancel[data-v-939000cb] {
4015
+ flex: 1;
4016
+ padding-right: 30px;
4017
+ font-size: 16px;
4018
+ font-weight: 400;
4019
+ text-align: end;
4020
+ }.more-container[data-v-d1a96ffd] {
4021
+ padding: 20px;
4022
+ }
4023
+ .more-container .more-title[data-v-d1a96ffd] {
4024
+ display: flex;
4025
+ align-items: center;
4026
+ }
4027
+ .more-container .more-title .email-icon[data-v-d1a96ffd] {
4028
+ color: var(--uikit-color-gray-7);
4029
+ }
4030
+ .more-container .more-title .more-notice[data-v-d1a96ffd] {
4031
+ width: 100%;
4032
+ height: 22px;
4033
+ padding-left: 8px;
4034
+ font-size: 14px;
4035
+ font-weight: 400;
4036
+ line-height: 22px;
4037
+ color: var(--text-color-primary);
4038
+ }
4039
+ .more-container .more-item[data-v-d1a96ffd] {
4040
+ position: relative;
4041
+ display: flex;
4042
+ flex-direction: column;
4043
+ }
4044
+ .more-container .more-item[data-v-d1a96ffd]:not(:first-child) {
4045
+ margin-top: 20px;
4046
+ }
4047
+ .more-container .more-item:not(:first-child) .item-title[data-v-d1a96ffd] {
4048
+ width: 100%;
4049
+ padding-bottom: 8px;
4050
+ font-size: 14px;
4051
+ font-weight: 400;
4052
+ line-height: 22px;
4053
+ color: var(--text-color-primary);
4054
+ }
4055
+ .more-container .more-item:not(:first-child) .more-content[data-v-d1a96ffd] {
4056
+ position: relative;
4057
+ box-sizing: border-box;
4058
+ display: inline-block;
4059
+ flex: 1;
4060
+ height: 42px;
4061
+ padding: 10px 30px 10px 16px;
4062
+ overflow: hidden;
4063
+ font-size: 14px;
4064
+ font-weight: 500;
4065
+ line-height: 22px;
4066
+ text-overflow: ellipsis;
4067
+ white-space: nowrap;
3966
4068
  border-radius: 8px;
4069
+ outline: none;
4070
+ transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
3967
4071
  color: var(--text-color-primary);
3968
- background-color: var(--button-color-secondary-default);
3969
- }.footer-container[data-v-3a373c3a] {
4072
+ background-color: var(--bg-color-input);
4073
+ border: 1px solid var(--stroke-color-module);
4074
+ }
4075
+ .more-container .more-item:not(:first-child) .copy-icon[data-v-d1a96ffd] {
4076
+ position: absolute;
4077
+ top: 45px;
4078
+ right: 10px;
4079
+ display: flex;
4080
+ align-items: center;
4081
+ justify-content: center;
4082
+ cursor: pointer;
4083
+ color: var(--text-color-link);
4084
+ }.contact-container[data-v-c9bb5a2b] {
4085
+ position: fixed;
4086
+ top: 0;
4087
+ bottom: 0;
4088
+ left: 0;
4089
+ z-index: 11;
4090
+ box-sizing: border-box;
4091
+ width: 100vw;
4092
+ height: auto;
4093
+ background-color: var(--uikit-color-black-8);
4094
+ }.footer-container[data-v-f808bd91] {
3970
4095
  position: absolute;
3971
4096
  bottom: 0;
3972
4097
  display: flex;
@@ -3980,25 +4105,25 @@ to {
3980
4105
  background-color: var(--bg-color-topbar);
3981
4106
  box-shadow: 0 -8px 30px var(--uikit-color-black-8);
3982
4107
  }
3983
- .footer-container .left-container[data-v-3a373c3a] {
4108
+ .footer-container .left-container[data-v-f808bd91] {
3984
4109
  display: flex;
3985
4110
  align-items: center;
3986
4111
  height: 100%;
3987
4112
  }
3988
- .footer-container .left-container .left-container-item[data-v-3a373c3a]:not(:first-child) {
4113
+ .footer-container .left-container .left-container-item[data-v-f808bd91]:not(:first-child) {
3989
4114
  margin-left: 1rem;
3990
4115
  }
3991
- .footer-container .center-container[data-v-3a373c3a] {
4116
+ .footer-container .center-container[data-v-f808bd91] {
3992
4117
  position: relative;
3993
4118
  display: flex;
3994
4119
  align-items: center;
3995
4120
  height: 100%;
3996
4121
  margin: 0 auto;
3997
4122
  }
3998
- .footer-container .center-container .center-container-item[data-v-3a373c3a]:not(:first-child) {
4123
+ .footer-container .center-container .center-container-item[data-v-f808bd91]:not(:first-child) {
3999
4124
  margin-left: 16px;
4000
4125
  }
4001
- .footer-container .right-container[data-v-3a373c3a] {
4126
+ .footer-container .right-container[data-v-f808bd91] {
4002
4127
  display: flex;
4003
4128
  align-items: center;
4004
4129
  height: 100%;
@@ -4986,159 +5111,6 @@ to {
4986
5111
  right: 0;
4987
5112
  z-index: 101;
4988
5113
  height: 100%;
4989
- }span[data-v-939000cb] {
4990
- padding-right: 5px;
4991
- font-size: 12px;
4992
- font-weight: 500;
4993
- line-height: 17px;
4994
- }
4995
- .contact-container-main[data-v-939000cb] {
4996
- position: fixed;
4997
- bottom: 0;
4998
- display: flex;
4999
- flex-direction: column;
5000
- width: 100%;
5001
- padding-bottom: 4vh;
5002
- border-radius: 15px 15px 0 0;
5003
- animation-name: popup-939000cb;
5004
- animation-duration: 200ms;
5005
- background-color: var(--bg-color-operate);
5006
- }
5007
- @keyframes popup-939000cb {
5008
- from {
5009
- transform: scaleY(0);
5010
- transform-origin: bottom;
5011
- }
5012
- to {
5013
- transform: scaleY(1);
5014
- transform-origin: bottom;
5015
- }
5016
- }
5017
- .contact-container-main .contact-title-main[data-v-939000cb] {
5018
- display: flex;
5019
- flex-direction: row;
5020
- align-items: center;
5021
- padding: 30px 0 20px 25px;
5022
- font-family: "PingFang SC";
5023
- font-size: 20px;
5024
- font-style: normal;
5025
- font-weight: 500;
5026
- line-height: 24px;
5027
- color: var(--text-color-primary);
5028
- }
5029
- .contact-container-main .contact-content-main[data-v-939000cb] {
5030
- display: flex;
5031
- flex-direction: row;
5032
- align-items: center;
5033
- width: 90%;
5034
- height: 15%;
5035
- padding: 0 0 0 25px;
5036
- margin-bottom: 10px;
5037
- }
5038
- .contact-container-main .contact-title[data-v-939000cb],
5039
- .contact-container-main .contact-content[data-v-939000cb] {
5040
- width: 28%;
5041
- font-family: "PingFang SC";
5042
- font-size: 14px;
5043
- font-style: normal;
5044
- font-weight: 400;
5045
- line-height: 20px;
5046
- white-space: nowrap;
5047
- color: var(--text-color-primary);
5048
- }
5049
- .contact-container-main .contact-content[data-v-939000cb] {
5050
- width: 62%;
5051
- overflow: hidden;
5052
- font-size: 14px;
5053
- text-overflow: ellipsis;
5054
- white-space: nowrap;
5055
- color: var(--text-color-secondary);
5056
- }
5057
- .contact-container-main .contact-bottom[data-v-939000cb] {
5058
- width: 90%;
5059
- padding-left: 40px;
5060
- font-family: "PingFang SC";
5061
- font-size: 12px;
5062
- font-style: normal;
5063
- font-weight: 400;
5064
- line-height: 17px;
5065
- text-align: center;
5066
- color: var(--text-color-secondary);
5067
- }
5068
- .contact-container-main .copy[data-v-939000cb] {
5069
- margin-left: 30px;
5070
- color: var(--text-color-link);
5071
- }
5072
- .cancel[data-v-939000cb] {
5073
- flex: 1;
5074
- padding-right: 30px;
5075
- font-size: 16px;
5076
- font-weight: 400;
5077
- text-align: end;
5078
- }.more-container[data-v-11728c2b] {
5079
- padding: 20px;
5080
- }
5081
- .more-container .more-title[data-v-11728c2b] {
5082
- display: flex;
5083
- align-items: center;
5084
- }
5085
- .more-container .more-title .email-icon[data-v-11728c2b] {
5086
- color: var(--uikit-color-gray-7);
5087
- }
5088
- .more-container .more-title .more-notice[data-v-11728c2b] {
5089
- width: 100%;
5090
- height: 22px;
5091
- padding-left: 8px;
5092
- font-size: 14px;
5093
- font-weight: 400;
5094
- line-height: 22px;
5095
- color: var(--text-color-primary);
5096
- }
5097
- .more-container .more-item[data-v-11728c2b] {
5098
- position: relative;
5099
- display: flex;
5100
- flex-direction: column;
5101
- }
5102
- .more-container .more-item[data-v-11728c2b]:not(:first-child) {
5103
- margin-top: 20px;
5104
- }
5105
- .more-container .more-item:not(:first-child) .item-title[data-v-11728c2b] {
5106
- width: 100%;
5107
- padding-bottom: 8px;
5108
- font-size: 14px;
5109
- font-weight: 400;
5110
- line-height: 22px;
5111
- color: var(--text-color-primary);
5112
- }
5113
- .more-container .more-item:not(:first-child) .more-content[data-v-11728c2b] {
5114
- position: relative;
5115
- box-sizing: border-box;
5116
- display: inline-block;
5117
- flex: 1;
5118
- height: 42px;
5119
- padding: 10px 30px 10px 16px;
5120
- overflow: hidden;
5121
- font-size: 14px;
5122
- font-weight: 500;
5123
- line-height: 22px;
5124
- text-overflow: ellipsis;
5125
- white-space: nowrap;
5126
- border-radius: 8px;
5127
- outline: none;
5128
- transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
5129
- color: var(--text-color-primary);
5130
- background-color: var(--bg-color-input);
5131
- border: 1px solid var(--stroke-color-module);
5132
- }
5133
- .more-container .more-item:not(:first-child) .copy-icon[data-v-11728c2b] {
5134
- position: absolute;
5135
- top: 45px;
5136
- right: 10px;
5137
- display: flex;
5138
- align-items: center;
5139
- justify-content: center;
5140
- cursor: pointer;
5141
- color: var(--text-color-link);
5142
5114
  }.conversation[data-v-b897add1] {
5143
5115
  height: 100%;
5144
5116
  padding: 20px;
@@ -3,5 +3,5 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
3
3
  const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
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-3a373c3a"]]);
6
+ const indexPc = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-f808bd91"]]);
7
7
  exports.default = indexPc;
@@ -59,15 +59,15 @@ const ManageMemberControl_vue_vue_type_script_setup_true_lang = require("../Mana
59
59
  const ChatControl_vue_vue_type_script_setup_true_lang = require("../ChatControl.vue.js");
60
60
  const ManageStageControl_vue_vue_type_script_setup_true_lang = require("../ManageStageControl.vue.js");
61
61
  const MemberApplyControl = require("../ApplyControl/MemberApplyControl.vue.js");
62
- const index$2 = require("../MoreControl/index.js");
63
- const index$3 = require("../EndControl/index.js");
62
+ const index$1 = require("../MoreControl/index.js");
63
+ const index$2 = require("../EndControl/index.js");
64
64
  const SettingControl_vue_vue_type_script_setup_true_lang = require("../SettingControl.vue.js");
65
65
  const WhiteboardControl = require("../WhiteboardControl.vue.js");
66
66
  const VirtualBackground = require("../VirtualBackground.vue.js");
67
67
  const AIControl = require("../AIControl.vue.js");
68
68
  const BasicBeauty = require("../BasicBeauty.vue.js");
69
69
  const useMitt = require("../../../hooks/useMitt.js");
70
- const index$1 = require("../voteControl/index.js");
70
+ const voteControl = require("../voteControl.vue.js");
71
71
  const useRoomFooterHooks = require("./useRoomFooterHooks.js");
72
72
  const _hoisted_1 = { class: "footer-container" };
73
73
  const _hoisted_2 = { class: "left-container" };
@@ -139,7 +139,7 @@ const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
139
139
  class: "center-container-item",
140
140
  onClick: _cache[9] || (_cache[9] = ($event) => handleControlClick("MasterApplyControl"))
141
141
  })) : Vue.createCommentVNode("", true),
142
- Vue.createVNode(Vue.unref(index$1.default), {
142
+ Vue.createVNode(voteControl.default, {
143
143
  class: "center-container-item",
144
144
  onClick: _cache[10] || (_cache[10] = ($event) => handleControlClick("voteControl")),
145
145
  onOnVote: onVote
@@ -149,7 +149,7 @@ const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
149
149
  ]),
150
150
  _: 3
151
151
  }),
152
- Vue.createVNode(Vue.unref(index$2.default), {
152
+ Vue.createVNode(Vue.unref(index$1.default), {
153
153
  class: "center-container-item",
154
154
  onClick: _cache[11] || (_cache[11] = ($event) => handleControlClick("moreControl"))
155
155
  }),
@@ -168,7 +168,7 @@ const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
168
168
  })) : Vue.createCommentVNode("", true)
169
169
  ]),
170
170
  Vue.createElementVNode("div", _hoisted_4, [
171
- Vue.createVNode(Vue.unref(index$3.default))
171
+ Vue.createVNode(Vue.unref(index$2.default))
172
172
  ])
173
173
  ]);
174
174
  };
@@ -0,0 +1,15 @@
1
+ declare function __VLS_template(): {
2
+ content?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
+ "on-vote": (...args: any[]) => void;
6
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
+ "onOn-vote"?: ((...args: any[]) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
9
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
10
+ export default _default;
11
+ type __VLS_WithTemplateSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
+ const voteControl_vue_vue_type_script_setup_true_lang = require("./voteControl.vue2.js");
4
+ ;/* empty css */
5
+ const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
6
+ const voteControl = /* @__PURE__ */ _pluginVue_exportHelper.default(voteControl_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-c9bb5a2b"]]);
7
+ exports.default = voteControl;