@opendesign-plus/components 0.0.1-rc.31 → 0.0.1-rc.33

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 (30) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +50 -46
  3. package/dist/components/header-language-switcher/OHeaderLanguageSwitcher.vue.d.ts +9 -0
  4. package/dist/components/header-language-switcher/index.d.ts +15 -0
  5. package/dist/components/meeting/OMeetingPlayback.vue.d.ts +4 -4
  6. package/dist/components/meeting/OMeetingSigCalendar.vue.d.ts +2 -0
  7. package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
  8. package/dist/components/meeting/index.d.ts +8 -2
  9. package/dist/components/meeting/types.d.ts +2 -0
  10. package/dist/components.cjs.js +38 -38
  11. package/dist/components.css +1 -1
  12. package/dist/components.es.js +8112 -8043
  13. package/package.json +3 -3
  14. package/src/assets/meeting/empty.png +0 -0
  15. package/src/assets/meeting/svg-icons/icon-copy.svg +3 -2
  16. package/src/assets/meeting/svg-icons/icon-empty.svg +65 -31
  17. package/src/assets/styles/element-plus.scss +32 -2
  18. package/src/components/events/OEventsApply.vue +8 -2
  19. package/src/components/events/OEventsList.vue +1 -3
  20. package/src/components/header-language-switcher/OHeaderLanguageSwitcher.vue +45 -3
  21. package/src/components/meeting/OMeetingCalendar.vue +81 -48
  22. package/src/components/meeting/OMeetingMyCalendar.vue +148 -99
  23. package/src/components/meeting/OMeetingSigCalendar.vue +91 -30
  24. package/src/components/meeting/components/OMeetingCalendarList.vue +25 -10
  25. package/src/components/meeting/components/OMeetingDetail.vue +45 -26
  26. package/src/components/meeting/components/OMeetingSigAside.vue +6 -5
  27. package/src/components/meeting/types.ts +2 -0
  28. package/src/i18n/en.ts +6 -4
  29. package/src/i18n/zh.ts +2 -0
  30. package/src/assets/meeting/svg-icons/icon-empty_dark.svg +0 -49
@@ -15,7 +15,7 @@ const props = defineProps<{
15
15
  }>();
16
16
  const { t, getPlatformLabel } = useMeetingConfig();
17
17
  const { locale } = useI18n();
18
- const isZh = computed(() => locale.value === 'zh');
18
+ const isEn = computed(() => locale.value === 'en');
19
19
  // 会议详情配置
20
20
  const infoList = computed(() =>
21
21
  [
@@ -92,13 +92,24 @@ const columns = computed<ColumnItemT[]>(() => {
92
92
 
93
93
  const domRef = ref([]);
94
94
  const SPLIT_MARK = '|';
95
+
96
+ const titleMap = ref<Record<CalendarDataType, string>>({
97
+ [CalendarDataType.ALL]: t('meeting.meetingTopic'),
98
+ [CalendarDataType.MEETING]: t('meeting.meetingTopic'),
99
+ [CalendarDataType.EVENTS]: t('meeting.eventsTitle'),
100
+ [CalendarDataType.APPROVAL]: t('meeting.eventsTitle'),
101
+ [CalendarDataType.SUMMIT]: t('meeting.summitTitle'),
102
+ });
95
103
  // 复制会议内容
96
104
  const copyInfo = () => {
97
105
  try {
98
- const colon = isZh.value ? ':' : ': ';
99
- let text = `${ t('meeting.meetingTopic') }${ colon }${ props.data.topic || props.data.name || props.data.title }\n`;
106
+ const colon = !isEn.value ? ':' : ': ';
107
+ let text = `${ titleMap.value[props.data.type] ?? t('meeting.meetingTopic') }${ colon }${ props.data.topic || props.data.name || props.data.title }\n`;
100
108
  text += [...domRef.value].reduce((pre, cur: HTMLDivElement) => {
101
- return `${ pre }${ cur.textContent ? cur.textContent.replace(SPLIT_MARK, colon) : '' }\n`;
109
+ if (cur.textContent) {
110
+ return `${ pre }${ cur.textContent ? cur.textContent.replace(SPLIT_MARK, colon) : '' }\n`;
111
+ }
112
+ return pre;
102
113
  }, '');
103
114
  navigator.clipboard.writeText(text);
104
115
  return Promise.resolve();
@@ -122,6 +133,7 @@ defineExpose({ copyInfo });
122
133
  'is-empty':!getField(info.key)?.length,
123
134
  [`label-item_${data.id}`]: true,
124
135
  [`type_${data.type}`]: true,
136
+ 'is-en': isEn,
125
137
  }"
126
138
  >
127
139
  <template v-if="getField(info.key) && !info.isRecord">
@@ -162,28 +174,32 @@ defineExpose({ copyInfo });
162
174
  <style lang="scss">
163
175
  .o-meeting-detail {
164
176
  position: relative;
177
+ display: grid;
178
+ grid-template-columns: auto 1fr;
179
+ row-gap: var(--o-gap-2);
180
+ column-gap: var(--o-gap-4);
181
+
182
+ @include respond('<=pad_v') {
183
+ row-gap: var(--o-gap-1);
184
+ column-gap: var(--o-gap-1);
185
+ }
186
+
165
187
  .label-item {
166
188
  color: var(--o-color-info3);
167
- display: flex;
168
- align-items: flex-start;
189
+ display: grid;
190
+ grid-template-columns: auto 1fr;
191
+ grid-template-columns: subgrid;
192
+ grid-column: 1 / -1;
193
+ align-items: start;
169
194
  font-size: 14px;
170
- gap: var(--o-gap-2);
171
-
195
+ line-height: 22px;
172
196
  @include respond('<=pad_v') {
173
197
  font-size: 12px;
174
- gap: var(--o-gap-1);
175
- }
176
-
177
- &:not(.is-empty) {
178
- margin-bottom: var(--o-gap-2);
179
- }
180
-
181
- &:last-child {
182
- margin-bottom: 0;
198
+ line-height: 18px;
183
199
  }
184
200
 
185
201
  &.record-item {
186
- align-items: flex-start;
202
+ align-items: start;
187
203
 
188
204
  .value {
189
205
  margin-bottom: 0;
@@ -191,7 +207,7 @@ defineExpose({ copyInfo });
191
207
  }
192
208
 
193
209
  .label {
194
- width: 4em;
210
+ white-space: nowrap;
195
211
  flex-shrink: 0;
196
212
  display: flex;
197
213
 
@@ -204,18 +220,21 @@ defineExpose({ copyInfo });
204
220
  }
205
221
 
206
222
  .split-mark {
207
- width: 0;
208
- height: 0;
209
- opacity: 0;
210
- overflow: hidden;
223
+ display: none;
211
224
  }
212
225
 
213
226
  .more-text-wrapper {
214
- position: relative;
215
- top: -2px;
227
+ //position: relative;
228
+ //top: -2px;
216
229
  }
217
230
 
218
231
  .o-link {
232
+ font-size: 14px;
233
+ line-height: 22px;
234
+ @include respond('<=pad_v') {
235
+ font-size: 12px;
236
+ line-height: 18px;
237
+ }
219
238
  .o-link-main {
220
239
  word-wrap: break-word;
221
240
  @include text-truncate(3);
@@ -243,7 +262,7 @@ defineExpose({ copyInfo });
243
262
  }
244
263
 
245
264
  .label-item.is-empty {
246
- margin: 0;
265
+ display: none;
247
266
  }
248
267
 
249
268
  .meeting-action {
@@ -80,7 +80,7 @@ const changeMonth = (step: number) => {
80
80
  .o-sig-meeting-aside {
81
81
  width: 35%;
82
82
  flex-shrink: 0;
83
- padding: var(--o-gap-4);
83
+ padding: var(--o-gap-4) var(--o-gap-5);
84
84
  display: flex;
85
85
  flex-direction: column;
86
86
  border-right: 1px solid var(--o-color-control4);
@@ -91,7 +91,7 @@ const changeMonth = (step: number) => {
91
91
  border-right: none;
92
92
  }
93
93
  @include respond('phone') {
94
- padding: 16px;
94
+ padding: var(--o-gap-4);
95
95
  .title {
96
96
  margin-bottom: var(--o-gap-2);
97
97
  }
@@ -139,6 +139,7 @@ const changeMonth = (step: number) => {
139
139
  font-weight: 500;
140
140
  margin-bottom: var(--o-gap-1);
141
141
  color: var(--o-color-info1);
142
+ @include tip1;
142
143
  }
143
144
 
144
145
  .day-c {
@@ -147,9 +148,9 @@ const changeMonth = (step: number) => {
147
148
  flex-wrap: nowrap;
148
149
 
149
150
  .o-icon {
150
- width: 20px;
151
- height: 20px;
152
- font-size: 18px;
151
+ width: 16px;
152
+ height: 16px;
153
+ font-size: 14px;
153
154
  padding: 1px;
154
155
  line-height: 1em;
155
156
  position: relative;
@@ -56,6 +56,8 @@ export interface MeetingCalendarPropsT {
56
56
  groupType: MeetingGroupType;
57
57
  groups: string[];
58
58
  disableFormat?: boolean; //是否禁用日期格式化
59
+ emptyImg?: any;
60
+ emptyText?: string;
59
61
  }
60
62
 
61
63
  // 会议新增、修改
package/src/i18n/en.ts CHANGED
@@ -78,7 +78,7 @@ export default {
78
78
  'meeting.meetingGroup': 'Group',
79
79
  'meeting.selectSig': 'Select a SIG.',
80
80
  'meeting.selectGroup': 'Select a Group.',
81
- 'meeting.enterEtherpad': 'Enter Etherpad.',
81
+ 'meeting.enterEtherpad': 'Enter Meeting Minutes.',
82
82
  'meeting.etherpadDesc': 'A meeting assistant for recording meeting minutes and conversations.',
83
83
  'meeting.selectDate': 'Select a date.',
84
84
  'meeting.finishMeetingConfig': 'Complete the meeting settings.',
@@ -144,16 +144,18 @@ export default {
144
144
  'meeting.version2512Banner': 'openUBMC 25.12 LTS 社区发行版正式上线',
145
145
  'meeting.sigs': 'SIG Groups',
146
146
  'meeting.groups': 'Groups',
147
- 'meeting.activityAddress': 'Address',
147
+ 'meeting.activityAddress': 'Location',
148
148
  'meeting.livePlatform': 'Live Platform',
149
149
  'meeting.meetingTopic': 'Topics',
150
+ 'meeting.eventsTitle': 'Name',
151
+ 'meeting.summitTitle': 'Name',
150
152
  'meeting.meetingDetail': 'Details',
151
- 'meeting.meetingEtherpad': 'Etherpad',
153
+ 'meeting.meetingEtherpad': 'Meeting Minutes',
152
154
  'meeting.meetingReplay': 'Playback',
153
155
  'meeting.searchSubtitlePlaceholder': 'Enter',
154
156
  'meeting.detailHalfYearMeetings': '默认显示近半年的会议。',
155
157
  'meeting.tencent': 'Tencent',
156
- 'meeting.etherpad': 'Etherpad',
158
+ 'meeting.etherpad': 'Meeting Minutes',
157
159
  'common.confirm': 'Confirm',
158
160
  'common.cancel': 'Cancel',
159
161
  'common.copySuccess': 'Copied Successfully',
package/src/i18n/zh.ts CHANGED
@@ -146,6 +146,8 @@ export default {
146
146
  'meeting.activityAddress': '活动地点',
147
147
  'meeting.livePlatform': '直播平台',
148
148
  'meeting.meetingTopic': '会议主题',
149
+ 'meeting.eventsTitle': '活动名称',
150
+ 'meeting.summitTitle': '峰会名称',
149
151
  'meeting.meetingDetail': '会议详情',
150
152
  'meeting.meetingEtherpad': '会议纪要',
151
153
  'meeting.meetingReplay': '智能回放',
@@ -1,49 +0,0 @@
1
- <svg width="320.000000" height="280.000000" viewBox="0 0 320 280" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <defs>
3
- <clipPath id="clip832_47109">
4
- <rect id="空内容" width="320.000000" height="280.000000" fill="white" fill-opacity="0"/>
5
- </clipPath>
6
- <linearGradient x1="160.000000" y1="203.999634" x2="160.000000" y2="250.525574" id="paint_linear_832_47113_0" gradientUnits="userSpaceOnUse">
7
- <stop stop-color="#418CFF" stop-opacity="0.200000"/>
8
- <stop offset="1.000000" stop-color="#418CFF" stop-opacity="0.000000"/>
9
- </linearGradient>
10
- </defs>
11
- <g clip-path="url(#clip832_47109)">
12
- <mask id="mask832_47110" mask-type="alpha" maskUnits="userSpaceOnUse" x="0.000000" y="0.000000" width="320.000000" height="280.000000">
13
- <rect id="蒙版" width="320.000000" height="280.000000" fill="#D8D8D8" fill-opacity="1.000000"/>
14
- <rect id="蒙版" x="0.500000" y="0.500000" width="319.000000" height="279.000000" stroke="#979797" stroke-opacity="0" stroke-width="1.000000"/>
15
- </mask>
16
- <g mask="url(#mask832_47110)">
17
- <path id="形状结合" d="M82.5635 204C16.7947 217.145 -29 246.52 -29 280.648L349 280.648C349 246.52 303.205 217.145 237.437 204C235.692 207.917 231.765 210.648 227.2 210.648L92.8 210.648C88.2349 210.648 84.3079 207.917 82.5635 204Z" clip-rule="evenodd" fill="url(#paint_linear_832_47113_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
18
- </g>
19
- <g mask="url(#mask832_47110)">
20
- <g opacity="0.800000">
21
- <g opacity="0.400000">
22
- <path id="形状结合备份 2" d="M238.41 123.892L81.6099 123.892L81.6099 199.492C81.6099 205.678 86.6243 210.692 92.8098 210.692L227.21 210.692C233.396 210.692 238.41 205.678 238.41 199.492L238.41 123.892ZM185.2 147.692L134.8 147.692C131.707 147.692 129.2 150.2 129.2 153.292C129.2 156.385 131.707 158.892 134.8 158.892L185.2 158.892C188.293 158.892 190.8 156.385 190.8 153.292C190.8 150.2 188.293 147.692 185.2 147.692Z" clip-rule="evenodd" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
23
- </g>
24
- <g opacity="0.500000">
25
- <path id="形状结合备份 3" d="M101.21 79.0912L218.81 79.0912L238.41 123.891L218.8 123.891L218.8 79.0925L101.209 79.0925L101.21 79.0912ZM101.2 79.1135L81.6099 123.891L101.2 123.891L101.2 101.492L101.2 79.1135Z" clip-rule="evenodd" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
26
- </g>
27
- <g opacity="0.600000">
28
- <rect id="矩形备份 2" x="101.209961" y="79.092285" width="117.599998" height="44.799999" fill="#418CFF" fill-opacity="1.000000"/>
29
- </g>
30
- <g opacity="0.500000">
31
- <path id="路径 8备份" d="M141.41 53.84L150.21 49.68L118.01 30.09L121.36 61.06L130.58 57.2L137.3 65.09L137.3 55.39L123.04 36.7L141.41 53.84Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
32
- </g>
33
- <g opacity="0.500000">
34
- <path id="路径 9备份" d="M137.1 69.36L137.08 69.34C137.05 69.05 137.25 68.79 137.55 68.76C137.84 68.73 138.1 68.93 138.13 69.23L138.12 69.25L137.62 69.31L164.2 97.36C162.45 98.04 160.51 98.43 158.38 98.43C141.01 98.43 137.7 70.16 137.61 69.31L137.1 69.36ZM167.76 95.4C166.68 96.19 165.49 96.85 164.2 97.36L195.59 130.5C195.49 130.6 195.43 130.74 195.43 130.89C195.43 131.19 195.67 131.42 195.97 131.42L195.99 131.4L195.98 130.89C207.36 130.74 224.93 106.21 188.78 102.28C179.4 101.26 172.54 98.67 167.76 95.4ZM167.76 95.4C154.13 86.07 157.47 71.22 167.51 71.42C178.24 71.63 177.32 88.38 167.76 95.4Z" fill="#D8D8D8" fill-opacity="0" fill-rule="evenodd"/>
35
- <path id="路径 9备份" d="M137.61 69.29C137.61 69.29 140.74 98.43 158.38 98.43C176.02 98.43 181.08 71.68 167.51 71.42C153.94 71.15 152.62 98.34 188.78 102.28C224.95 106.21 207.34 130.76 195.96 130.89" stroke="#418CFF" stroke-opacity="0.800000" stroke-width="1.062340" stroke-linejoin="round" stroke-linecap="round" stroke-dasharray="4.24936 4.24936"/>
36
- </g>
37
- <g opacity="0.300000">
38
- <path id="路径-14备份" d="M263.56 176.16C262.39 178.17 261.51 179.39 260.94 179.81C259.29 181.01 257.77 181.34 256.73 181.4C254.34 181.52 259.23 180.69 260.87 178.65C261.97 177.29 263.25 175.25 264.7 172.53L263.38 172.6L262.01 174.52C261.52 173.96 260.91 173.7 260.19 173.74C259.1 173.8 256.31 174.42 255.39 177.56C254.78 179.65 253.4 181.53 251.24 183.21C254.56 184.69 257.7 184.52 260.66 182.72C263.62 180.91 264.58 178.72 263.56 176.16Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
39
- </g>
40
- <g opacity="0.300000">
41
- <path id="路径-14备份" d="M70.75 101.63C68.76 105.14 67.27 107.27 66.29 108.01C63.5 110.11 60.91 110.69 59.14 110.78C55.08 110.99 63.39 109.54 66.18 105.98C68.04 103.6 70.21 100.03 72.68 95.28L70.42 95.4L68.1 98.75C67.27 97.77 66.23 97.32 65 97.38C63.15 97.48 58.41 98.57 56.86 104.05C55.82 107.71 53.48 111 49.82 113.93C55.46 116.53 60.8 116.25 65.82 113.1C70.85 109.94 72.49 106.12 70.75 101.63Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
42
- </g>
43
- <g opacity="0.300000">
44
- <path id="路径" d="M281.54 142.79C281.93 142.77 282.25 143.07 282.27 143.45C282.74 153.32 277.51 160.9 266.71 166.14C266.36 166.31 265.94 166.16 265.78 165.81C265.61 165.47 265.75 165.05 266.1 164.88C276.43 159.87 281.31 152.78 280.87 143.52C280.85 143.13 281.15 142.81 281.54 142.79Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
45
- </g>
46
- </g>
47
- </g>
48
- </g>
49
- </svg>