@opendesign-plus-test/components 0.0.1-rc.122 → 0.0.1-rc.124

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 (42) hide show
  1. package/dist/components.cjs.js +44 -36
  2. package/dist/components.css +1 -1
  3. package/dist/components.es.js +8799 -8766
  4. package/dist/treeshaking/_virtual/vue-router/dist/devtools-EWN81iOl.mjs.mjs +15 -0
  5. package/dist/treeshaking/_virtual/vue-router/dist/vue-router.mjs.mjs +14 -0
  6. package/dist/treeshaking/components/activity/OActivityApproval.css +1 -1
  7. package/dist/treeshaking/components/activity/OActivityMyCalendar.css +4 -4
  8. package/dist/treeshaking/components/common/TooltipText.vue.mjs +8 -0
  9. package/dist/treeshaking/components/events/OEventsApply.css +2 -2
  10. package/dist/treeshaking/components/events/OEventsCalendar.css +4 -4
  11. package/dist/treeshaking/components/events/OEventsList.css +7 -1
  12. package/dist/treeshaking/components/footer/OFooter.css +5 -5
  13. package/dist/treeshaking/components/header/OHeader.css +15 -15
  14. package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
  15. package/dist/treeshaking/components/header/OHeader.vue2.mjs +26 -1
  16. package/dist/treeshaking/components/header/components/HeaderContent.css +186 -186
  17. package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
  18. package/dist/treeshaking/components/header/components/HeaderContent.vue2.mjs +9 -3
  19. package/dist/treeshaking/components/header/components/HeaderNav.css +49 -49
  20. package/dist/treeshaking/components/header/components/HeaderNav.vue.mjs +1 -1
  21. package/dist/treeshaking/components/header/components/HeaderNav.vue2.mjs +11 -9
  22. package/dist/treeshaking/components/header/components/HeaderNavMobile.css +1 -1
  23. package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.css +27 -51
  24. package/dist/treeshaking/components/header-language-switcher/OHeaderLanguageSwitcher.vue.mjs +1 -1
  25. package/dist/treeshaking/components/header-source-code/OHeaderSourceCode.css +1 -1
  26. package/dist/treeshaking/components/header-user/OHeaderUser.css +1 -1
  27. package/dist/treeshaking/components/meeting/OMeetingCalendar.css +30 -9
  28. package/dist/treeshaking/components/meeting/OMeetingCalendar.vue.mjs +4 -6
  29. package/dist/treeshaking/components/meeting/OMeetingForm.css +1 -1
  30. package/dist/treeshaking/components/meeting/OMeetingForm2.css +1 -1
  31. package/dist/treeshaking/components/meeting/OMeetingMyCalendar.css +3 -3
  32. package/dist/treeshaking/components/meeting/OMeetingPlayback.css +2 -2
  33. package/dist/treeshaking/components/meeting/OMeetingSigCalendar.css +1 -1
  34. package/dist/treeshaking/components/meeting/OMeetingSigCalendar.vue.mjs +7 -8
  35. package/dist/treeshaking/components/meeting/components/OMeetingCalendarList.css +33 -8
  36. package/dist/treeshaking/components/meeting/components/OMeetingDetail.css +38 -2
  37. package/dist/treeshaking/components/meeting/components/OMeetingPlaybackSubtitles.css +2 -2
  38. package/dist/treeshaking/components/meeting/components/OMeetingPlaybackVideo.css +1 -1
  39. package/dist/treeshaking/components/meeting/components/OMeetingSigAside.css +1 -1
  40. package/dist/treeshaking/components/search/OSearchInput.css +2 -2
  41. package/dist/treeshaking/components/search/internal/SearchPanel.css +5 -5
  42. package/package.json +3 -3
@@ -281,17 +281,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
281
281
  const evaluateTabIcons = useDebounceFn(() => {
282
282
  const root = rootRef.value;
283
283
  if (!root || !isClient) return;
284
+ if (props.hiddenSummit || props.hiddenEvents) return;
284
285
  const tabEl = root.querySelector(".o-tab");
285
286
  if (!tabEl) return;
286
287
  const containerEl = tabEl.querySelector(".o-tab-navs-container");
287
- const measureEl = tabEl.querySelector(".o-tab-nav-list.width-measurement");
288
- if (!containerEl || !measureEl) return;
288
+ if (!containerEl) return;
289
289
  const containerWidth = containerEl.getBoundingClientRect().width;
290
290
  if (!containerWidth) return;
291
- tabEl.classList.add("measuring");
292
- const fullWidth = measureEl.getBoundingClientRect().width;
293
- tabEl.classList.remove("measuring");
294
- tabEl.classList.toggle("hide-icons", fullWidth > containerWidth);
291
+ const threshold = isEn.value ? 430 : 330;
292
+ tabEl.classList.toggle("hide-icons", containerWidth < threshold);
295
293
  }, 120);
296
294
  onMounted(() => {
297
295
  getCalendarHeight();
@@ -555,7 +555,7 @@
555
555
  }
556
556
  @media (min-width: 1201px) and (max-width: 1680px) {
557
557
  .o-meeting-form .o-form .switch-wrapper .switch-text {
558
- font-size: 12px;
558
+ font-size: 14px;
559
559
  line-height: 18px;
560
560
  }
561
561
  }
@@ -312,7 +312,7 @@
312
312
  }
313
313
  @media (min-width: 1201px) and (max-width: 1680px) {
314
314
  .o-meeting-form-popover-content {
315
- font-size: 12px;
315
+ font-size: 14px;
316
316
  line-height: 18px;
317
317
  }
318
318
  }
@@ -345,7 +345,7 @@
345
345
  }
346
346
  @media (min-width: 1201px) and (max-width: 1680px) {
347
347
  .o-my-meeting-calendar .header .desc {
348
- font-size: 12px;
348
+ font-size: 14px;
349
349
  line-height: 18px;
350
350
  }
351
351
  }
@@ -1167,7 +1167,7 @@
1167
1167
  }
1168
1168
  @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
1169
1169
  .o-my-meeting-calendar .meeting-list .list-body .o-collapse .o-collapse-item-header .o-collapse-item-title .item-header-left .header-info .meeting-info {
1170
- font-size: 12px;
1170
+ font-size: 14px;
1171
1171
  line-height: 18px;
1172
1172
  }
1173
1173
  }
@@ -1304,7 +1304,7 @@
1304
1304
  }
1305
1305
  @media (min-width: 1201px) and (max-width: 1680px) {
1306
1306
  .o-my-meeting-calendar .meeting-list .list-body .load-text {
1307
- font-size: 12px;
1307
+ font-size: 14px;
1308
1308
  line-height: 18px;
1309
1309
  }
1310
1310
  }
@@ -141,7 +141,7 @@
141
141
  }
142
142
  @media (min-width: 1201px) and (max-width: 1680px) {
143
143
  .o-meeting-playback .left-card .info-wrapper .tab-content .more-btn {
144
- font-size: 12px;
144
+ font-size: 14px;
145
145
  line-height: 18px;
146
146
  }
147
147
  }
@@ -273,7 +273,7 @@
273
273
  }
274
274
  @media (min-width: 1201px) and (max-width: 1680px) {
275
275
  .o-meeting-playback .left-card .info-wrapper .tab-content .subject-list .mouse-current-time {
276
- font-size: 12px;
276
+ font-size: 14px;
277
277
  line-height: 18px;
278
278
  }
279
279
  }
@@ -203,7 +203,7 @@
203
203
  }
204
204
  @media (min-width: 1201px) and (max-width: 1680px) {
205
205
  .o-sig-meeting-calendar .empty-result .o-result-description {
206
- font-size: 12px;
206
+ font-size: 14px;
207
207
  line-height: 18px;
208
208
  }
209
209
  }
@@ -1,4 +1,4 @@
1
- import { defineComponent, ref, computed, watch, nextTick, onMounted, onBeforeUnmount, openBlock, createElementBlock, unref, createElementVNode, toDisplayString, createVNode, withCtx, createCommentVNode, Fragment, renderList, createBlock, resolveDynamicComponent, createTextVNode, renderSlot } from "vue";
1
+ import { defineComponent, computed, ref, watch, nextTick, onMounted, onBeforeUnmount, openBlock, createElementBlock, unref, createElementVNode, toDisplayString, createVNode, withCtx, createCommentVNode, Fragment, renderList, createBlock, resolveDynamicComponent, createTextVNode, renderSlot } from "vue";
2
2
  import { isClient, OPopover, OIcon, OTab, OTabPane, OSelect, OOption, ODivider, OScroller, OResult, OFigure } from "@opensig/opendesign";
3
3
  import dayjs from "dayjs";
4
4
  import IconTips from "../../_virtual/icon-tips.mjs";
@@ -11,6 +11,7 @@ import _sfc_main$2 from "./components/OMeetingCalendarList.vue.mjs";
11
11
  import './components/OMeetingCalendarList.css';
12
12
  import { formatDate } from "./utils.mjs";
13
13
  import emptyDefaultImg from "../../assets/meeting/empty.png.mjs";
14
+ import { Locales } from "../../i18n/index.mjs";
14
15
  import { useDebounceFn } from "@vueuse/core";
15
16
  const _hoisted_1 = {
16
17
  key: 0,
@@ -39,7 +40,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
39
40
  },
40
41
  setup(__props) {
41
42
  const props = __props;
42
- const { t, meetingTabs } = useMeetingConfig();
43
+ const { t, locale, meetingTabs } = useMeetingConfig();
44
+ const isEn = computed(() => locale.value === Locales.EN);
43
45
  const { lePadV } = useScreen();
44
46
  const selectDate = ref("");
45
47
  const loading = ref(false);
@@ -188,14 +190,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
188
190
  const tabEl = root.querySelector(".meeting-card-header .o-tab");
189
191
  if (!tabEl) return;
190
192
  const containerEl = tabEl.querySelector(".o-tab-navs-container");
191
- const measureEl = tabEl.querySelector(".o-tab-nav-list.width-measurement");
192
- if (!containerEl || !measureEl) return;
193
+ if (!containerEl) return;
193
194
  const containerWidth = containerEl.getBoundingClientRect().width;
194
195
  if (!containerWidth) return;
195
- tabEl.classList.add("measuring");
196
- const fullWidth = measureEl.getBoundingClientRect().width;
197
- tabEl.classList.remove("measuring");
198
- tabEl.classList.toggle("hide-icons", fullWidth > containerWidth);
196
+ const threshold = isEn.value ? 130 : 120;
197
+ tabEl.classList.toggle("hide-icons", containerWidth < threshold);
199
198
  }, 120);
200
199
  onMounted(() => {
201
200
  getDates();
@@ -174,7 +174,7 @@
174
174
  }
175
175
  @media (min-width: 1201px) and (max-width: 1680px) {
176
176
  .o-meeting-calendar-list .o-collapse .o-collapse-item-body .calendar-info {
177
- font-size: 12px;
177
+ font-size: 14px;
178
178
  line-height: 18px;
179
179
  }
180
180
  }
@@ -219,6 +219,34 @@
219
219
  .o-meeting-calendar-list .o-collapse .btn-wrapper {
220
220
  margin-top: var(--o-gap-1);
221
221
  }
222
+ .o-meeting-calendar-list .o-collapse .btn-wrapper .o-btn {
223
+ font-size: 14px;
224
+ line-height: 22px;
225
+ }
226
+ @media (min-width: 1201px) and (max-width: 1680px) {
227
+ .o-meeting-calendar-list .o-collapse .btn-wrapper .o-btn {
228
+ font-size: 14px;
229
+ line-height: 18px;
230
+ }
231
+ }
232
+ @media (min-width: 841px) and (max-width: 1200px) {
233
+ .o-meeting-calendar-list .o-collapse .btn-wrapper .o-btn {
234
+ font-size: 12px;
235
+ line-height: 18px;
236
+ }
237
+ }
238
+ @media (min-width: 601px) and (max-width: 840px) {
239
+ .o-meeting-calendar-list .o-collapse .btn-wrapper .o-btn {
240
+ font-size: 12px;
241
+ line-height: 18px;
242
+ }
243
+ }
244
+ @media (max-width: 600px) {
245
+ .o-meeting-calendar-list .o-collapse .btn-wrapper .o-btn {
246
+ font-size: 12px;
247
+ line-height: 18px;
248
+ }
249
+ }
222
250
  .o-meeting-calendar-list .o-collapse .jump-detail-link {
223
251
  padding-left: calc(var(--icon-right) + var(--icon-size2));
224
252
  color: var(--o-color-info2);
@@ -228,7 +256,7 @@
228
256
  }
229
257
  @media (min-width: 1201px) and (max-width: 1680px) {
230
258
  .o-meeting-calendar-list .o-collapse .jump-detail-link {
231
- font-size: 12px;
259
+ font-size: 14px;
232
260
  line-height: 18px;
233
261
  }
234
262
  }
@@ -366,7 +394,7 @@
366
394
  }
367
395
  @media (min-width: 1201px) and (max-width: 1680px) {
368
396
  .o-meeting-calendar-list .o-collapse .meet-info {
369
- font-size: 12px;
397
+ font-size: 14px;
370
398
  line-height: 18px;
371
399
  }
372
400
  }
@@ -394,7 +422,7 @@
394
422
  }
395
423
  @media (min-width: 1201px) and (max-width: 1680px) {
396
424
  .o-meeting-calendar-list .o-collapse .meet-info .o-divider {
397
- font-size: 12px;
425
+ font-size: 14px;
398
426
  line-height: 18px;
399
427
  }
400
428
  }
@@ -416,9 +444,6 @@
416
444
  line-height: 18px;
417
445
  }
418
446
  }
419
- .o-meeting-calendar-list .o-collapse .meet-info.hidden-divider .start-time {
420
- padding-right: 24px;
421
- }
422
447
  .o-meeting-calendar-list .o-collapse .meet-info.hidden-divider .o-divider {
423
- display: none;
448
+ opacity: 0;
424
449
  }
@@ -35,7 +35,25 @@
35
35
  font-size: 14px;
36
36
  line-height: 22px;
37
37
  }
38
- @media (max-width: 840px) {
38
+ @media (min-width: 1201px) and (max-width: 1680px) {
39
+ .o-meeting-detail .label-item {
40
+ font-size: 14px;
41
+ line-height: 18px;
42
+ }
43
+ }
44
+ @media (min-width: 841px) and (max-width: 1200px) {
45
+ .o-meeting-detail .label-item {
46
+ font-size: 12px;
47
+ line-height: 18px;
48
+ }
49
+ }
50
+ @media (min-width: 601px) and (max-width: 840px) {
51
+ .o-meeting-detail .label-item {
52
+ font-size: 12px;
53
+ line-height: 18px;
54
+ }
55
+ }
56
+ @media (max-width: 600px) {
39
57
  .o-meeting-detail .label-item {
40
58
  font-size: 12px;
41
59
  line-height: 18px;
@@ -65,7 +83,25 @@
65
83
  font-size: 14px;
66
84
  line-height: 22px;
67
85
  }
68
- @media (max-width: 840px) {
86
+ @media (min-width: 1201px) and (max-width: 1680px) {
87
+ .o-meeting-detail .label-item .o-link {
88
+ font-size: 14px;
89
+ line-height: 18px;
90
+ }
91
+ }
92
+ @media (min-width: 841px) and (max-width: 1200px) {
93
+ .o-meeting-detail .label-item .o-link {
94
+ font-size: 12px;
95
+ line-height: 18px;
96
+ }
97
+ }
98
+ @media (min-width: 601px) and (max-width: 840px) {
99
+ .o-meeting-detail .label-item .o-link {
100
+ font-size: 12px;
101
+ line-height: 18px;
102
+ }
103
+ }
104
+ @media (max-width: 600px) {
69
105
  .o-meeting-detail .label-item .o-link {
70
106
  font-size: 12px;
71
107
  line-height: 18px;
@@ -642,7 +642,7 @@
642
642
  }
643
643
  @media (min-width: 1201px) and (max-width: 1680px) {
644
644
  .o-meeting-playback-subtitles .captions-tab .captions-item .info .speaker {
645
- font-size: 12px;
645
+ font-size: 14px;
646
646
  line-height: 18px;
647
647
  }
648
648
  }
@@ -672,7 +672,7 @@
672
672
  }
673
673
  @media (min-width: 1201px) and (max-width: 1680px) {
674
674
  .o-meeting-playback-subtitles .captions-tab .captions-item .info .start-time {
675
- font-size: 12px;
675
+ font-size: 14px;
676
676
  line-height: 18px;
677
677
  }
678
678
  }
@@ -382,7 +382,7 @@
382
382
  }
383
383
  @media (min-width: 1201px) and (max-width: 1680px) {
384
384
  .video-js .vjs-text-track-display .vjs-text-track-cue div {
385
- font-size: 12px;
385
+ font-size: 14px;
386
386
  line-height: 18px;
387
387
  }
388
388
  }
@@ -108,7 +108,7 @@
108
108
  }
109
109
  @media (min-width: 1201px) and (max-width: 1680px) {
110
110
  .o-sig-meeting-aside .month-item .days .day-item .day-d {
111
- font-size: 12px;
111
+ font-size: 14px;
112
112
  line-height: 18px;
113
113
  }
114
114
  }
@@ -76,7 +76,7 @@
76
76
  }
77
77
  @media (min-width: 1201px) and (max-width: 1680px) {
78
78
  .o-search-input-suggest-list-row[data-v-18e8aec0] {
79
- font-size: 12px;
79
+ font-size: 14px;
80
80
  line-height: 18px;
81
81
  }
82
82
  }
@@ -109,7 +109,7 @@
109
109
  }
110
110
  @media (min-width: 1201px) and (max-width: 1680px) {
111
111
  .o-search-input-suggest-list-label[data-v-18e8aec0] {
112
- font-size: 12px;
112
+ font-size: 14px;
113
113
  line-height: 18px;
114
114
  }
115
115
  }
@@ -20,7 +20,7 @@
20
20
  }
21
21
  @media (min-width: 1201px) and (max-width: 1680px) {
22
22
  .o-search-panel-section-title[data-v-872f0035] {
23
- font-size: 12px;
23
+ font-size: 14px;
24
24
  line-height: 18px;
25
25
  }
26
26
  }
@@ -112,7 +112,7 @@
112
112
  }
113
113
  @media (min-width: 1201px) and (max-width: 1680px) {
114
114
  .o-search-panel-item[data-v-872f0035] {
115
- font-size: 12px;
115
+ font-size: 14px;
116
116
  line-height: 18px;
117
117
  }
118
118
  }
@@ -325,7 +325,7 @@
325
325
  }
326
326
  @media (min-width: 1201px) and (max-width: 1680px) {
327
327
  .o-search-panel-recommend-item[data-v-872f0035] {
328
- font-size: 12px;
328
+ font-size: 14px;
329
329
  line-height: 18px;
330
330
  }
331
331
  }
@@ -506,7 +506,7 @@
506
506
  }
507
507
  @media (min-width: 1201px) and (max-width: 1680px) {
508
508
  .o-search-panel-history-row[data-v-872f0035] {
509
- font-size: 12px;
509
+ font-size: 14px;
510
510
  line-height: 18px;
511
511
  }
512
512
  }
@@ -550,7 +550,7 @@
550
550
  }
551
551
  @media (min-width: 1201px) and (max-width: 1680px) {
552
552
  .o-search-panel-hot-list[data-v-872f0035] {
553
- font-size: 12px;
553
+ font-size: 14px;
554
554
  line-height: 18px;
555
555
  }
556
556
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendesign-plus-test/components",
3
- "version": "0.0.1-rc.122",
3
+ "version": "0.0.1-rc.124",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -45,8 +45,8 @@
45
45
  "vue-dompurify-html": "^3.1.2",
46
46
  "vue": "^3.5.13",
47
47
  "element-plus": "2.13.1",
48
- "@opendesign-plus/styles": "0.0.1-rc.2",
49
- "@opendesign-plus/composables": "0.0.1-rc.10"
48
+ "@opendesign-plus/composables": "0.0.1-rc.10",
49
+ "@opendesign-plus/styles": "0.0.1-rc.2"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@vitejs/plugin-vue": "^5.2.1",