@opendesign-plus-test/components 0.0.1-rc.152 → 0.0.1-rc.154

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 (48) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +2 -2
  3. package/dist/components/meeting/OMeetingMinutes.vue.d.ts +2 -348
  4. package/dist/components/meeting/index.d.ts +1 -174
  5. package/dist/components/meeting/types.d.ts +0 -1
  6. package/dist/components/sig/OSigDetail.vue.d.ts +1 -1
  7. package/dist/components/sig/OSigList.vue.d.ts +2 -0
  8. package/dist/components/sig/components/OSigItem.vue.d.ts +4 -1
  9. package/dist/components.cjs.js +36 -36
  10. package/dist/components.css +1 -1
  11. package/dist/components.es.js +6081 -6068
  12. package/dist/treeshaking/components/activity/OActivityApproval.css +8 -8
  13. package/dist/treeshaking/components/footer/components/FooterList.css +109 -96
  14. package/dist/treeshaking/components/footer/components/FooterList.vue.mjs +1 -1
  15. package/dist/treeshaking/components/header/OHeader.css +25 -15
  16. package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
  17. package/dist/treeshaking/components/header/components/HeaderContent.css +185 -185
  18. package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
  19. package/dist/treeshaking/components/header/components/HeaderFlatten.css +74 -75
  20. package/dist/treeshaking/components/header/components/HeaderFlatten.vue.mjs +1 -1
  21. package/dist/treeshaking/components/meeting/OMeetingMinutes.css +223 -176
  22. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue.d.ts +2 -348
  23. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue.mjs +6 -373
  24. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue2.mjs +356 -0
  25. package/dist/treeshaking/components/meeting/OMeetingMinutes2.css +11 -0
  26. package/dist/treeshaking/components/meeting/components/OMeetingSendMinutesDialog.css +53 -53
  27. package/dist/treeshaking/components/meeting/components/OMeetingSendMinutesDialog.vue.mjs +1 -1
  28. package/dist/treeshaking/components/meeting/index.d.ts +1 -174
  29. package/dist/treeshaking/components/meeting/index.mjs +12 -13
  30. package/dist/treeshaking/components/meeting/types.d.ts +0 -1
  31. package/dist/treeshaking/components/sig/OSigDetail.css +7 -3
  32. package/dist/treeshaking/components/sig/OSigDetail.vue.d.ts +1 -1
  33. package/dist/treeshaking/components/sig/OSigDetail.vue.mjs +6 -3
  34. package/dist/treeshaking/components/sig/OSigList.css +165 -134
  35. package/dist/treeshaking/components/sig/OSigList.vue.d.ts +2 -0
  36. package/dist/treeshaking/components/sig/OSigList.vue.mjs +118 -103
  37. package/dist/treeshaking/components/sig/components/OSigDetailInfoCard.css +1 -1
  38. package/dist/treeshaking/components/sig/components/OSigItem.css +31 -367
  39. package/dist/treeshaking/components/sig/components/OSigItem.vue.d.ts +4 -1
  40. package/dist/treeshaking/components/sig/components/OSigItem.vue.mjs +6 -4
  41. package/dist/treeshaking/components/sig/components/OSigMember.css +1 -1
  42. package/dist/treeshaking/components/sig/components/OSigRepo.css +15 -2
  43. package/dist/treeshaking/components/sig/components/OSigUserContribute.css +7 -0
  44. package/dist/treeshaking/components/video/OVideoDetail.css +7 -7
  45. package/dist/treeshaking/i18n/en.mjs +1 -1
  46. package/dist/treeshaking/i18n/zh.mjs +1 -1
  47. package/package.json +3 -3
  48. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue3.mjs +0 -5
@@ -10,7 +10,7 @@
10
10
  height: 100%;
11
11
  background-color: var(--o-color-fill2);
12
12
  padding: var(--o-gap-5) var(--o-gap-6);
13
- border-radius: var(--o-radius-xs);
13
+ border-radius: var(--sig-card-radius);
14
14
  }
15
15
  @media (min-width: 1201px) and (max-width: 1680px) {
16
16
  .o-sig-item {
@@ -25,55 +25,67 @@
25
25
  @media (max-width: 840px) {
26
26
  .o-sig-item {
27
27
  padding: var(--o-gap-2) var(--o-gap-3);
28
+ position: relative;
28
29
  }
29
30
  }
30
31
  .o-sig-item .o-sig-item-header {
31
32
  display: flex;
32
33
  justify-content: space-between;
33
34
  align-items: center;
35
+ flex-wrap: nowrap;
36
+ gap: var(--o-r-gap-4);
34
37
  }
35
- .o-sig-item .o-sig-name {
38
+ .o-sig-item .o-sig-item-header .o-sig-name {
36
39
  cursor: pointer;
37
40
  color: var(--o-color-info1);
38
41
  font-weight: 600;
42
+ min-width: 0;
43
+ flex: 1;
44
+ overflow: hidden;
45
+ text-overflow: ellipsis;
46
+ word-break: break-all;
47
+ display: -webkit-box;
48
+ -webkit-box-orient: vertical;
49
+ -webkit-line-clamp: 1;
39
50
  font-size: 22px;
40
51
  line-height: 30px;
41
52
  }
42
53
  @media (min-width: 1201px) and (max-width: 1680px) {
43
- .o-sig-item .o-sig-name {
54
+ .o-sig-item .o-sig-item-header .o-sig-name {
44
55
  font-size: 18px;
45
56
  line-height: 26px;
46
57
  }
47
58
  }
48
59
  @media (min-width: 841px) and (max-width: 1200px) {
49
- .o-sig-item .o-sig-name {
60
+ .o-sig-item .o-sig-item-header .o-sig-name {
50
61
  font-size: 16px;
51
62
  line-height: 24px;
52
63
  }
53
64
  }
54
65
  @media (min-width: 601px) and (max-width: 840px) {
55
- .o-sig-item .o-sig-name {
66
+ .o-sig-item .o-sig-item-header .o-sig-name {
56
67
  font-size: 16px;
57
68
  line-height: 24px;
58
69
  }
59
70
  }
60
71
  @media (max-width: 600px) {
61
- .o-sig-item .o-sig-name {
72
+ .o-sig-item .o-sig-item-header .o-sig-name {
62
73
  font-size: 16px;
63
74
  line-height: 24px;
64
75
  }
65
76
  }
66
77
  @media (hover: hover) {
67
- .o-sig-item .o-sig-name:hover {
78
+ .o-sig-item .o-sig-item-header .o-sig-name:hover {
68
79
  color: var(--o-color-primary1);
69
80
  }
70
81
  }
71
- .o-sig-item .o-sig-type-tag {
82
+ .o-sig-item .o-sig-item-header .o-sig-type-tag {
72
83
  --tag-bd-color: var(--o-color-control4);
73
84
  --tag-height: 24px;
85
+ flex-shrink: 0;
74
86
  }
75
87
  @media (max-width: 1680px) {
76
- .o-sig-item .o-sig-type-tag {
88
+ .o-sig-item .o-sig-item-header .o-sig-type-tag {
77
89
  --tag-height: 20px;
78
90
  }
79
91
  }
@@ -82,6 +94,11 @@
82
94
  align-items: center;
83
95
  margin-top: var(--o-gap-2);
84
96
  }
97
+ @media (max-width: 840px) {
98
+ .o-sig-item .o-sig-link a:first-child {
99
+ height: 20px;
100
+ }
101
+ }
85
102
  .o-sig-item .o-sig-link .o-sig-source-icon {
86
103
  font-size: 24px;
87
104
  }
@@ -211,7 +228,6 @@
211
228
  @media (max-width: 840px) {
212
229
  .o-sig-item .o-sig-description {
213
230
  margin-top: var(--o-gap-2);
214
- order: 1;
215
231
  font-size: 16px;
216
232
  line-height: 24px;
217
233
  }
@@ -277,7 +293,7 @@
277
293
  margin-top: var(--o-gap-3);
278
294
  }
279
295
  }
280
- @media (min-width: ) {
296
+ @media (max-width: 1200px) {
281
297
  .o-sig-item .o-sig-bottom {
282
298
  margin-top: var(--o-gap-2);
283
299
  }
@@ -327,361 +343,11 @@
327
343
  display: flex;
328
344
  align-items: center;
329
345
  }
330
- @media (max-width: 840px) {
331
- .o-sig-item {
332
- position: relative;
333
- }
334
- .o-sig-item .o-sig-item-header {
335
- display: flex;
336
- justify-content: space-between;
337
- align-items: center;
338
- }
339
- .o-sig-item .o-sig-name {
340
- cursor: pointer;
341
- color: var(--o-color-info1);
342
- font-weight: 600;
343
- font-size: 22px;
344
- line-height: 30px;
345
- }
346
- }
347
- @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
348
- .o-sig-item .o-sig-name {
349
- font-size: 18px;
350
- line-height: 26px;
351
- }
352
- }
353
- @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
354
- .o-sig-item .o-sig-name {
355
- font-size: 16px;
356
- line-height: 24px;
357
- }
358
- }
359
- @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
360
- .o-sig-item .o-sig-name {
361
- font-size: 16px;
362
- line-height: 24px;
363
- }
364
- }
365
- @media (max-width: 840px) and (max-width: 600px) {
366
- .o-sig-item .o-sig-name {
367
- font-size: 16px;
368
- line-height: 24px;
369
- }
370
- }
371
- @media (max-width: 840px) and (hover: hover) {
372
- .o-sig-item .o-sig-name:hover {
373
- color: var(--o-color-primary1);
374
- }
375
- }
376
- @media (max-width: 840px) {
377
- .o-sig-item .o-sig-type-tag {
378
- --tag-bd-color: var(--o-color-control4);
379
- --tag-height: 24px;
380
- }
381
- }
382
- @media (max-width: 840px) and (max-width: 1680px) {
383
- .o-sig-item .o-sig-type-tag {
384
- --tag-height: 20px;
385
- }
386
- }
387
- @media (max-width: 840px) and (max-width: 840px) {
388
- .o-sig-item .o-sig-type-tag {
389
- position: absolute;
390
- top: 8px;
391
- right: 4px;
392
- }
393
- }
394
- @media (max-width: 840px) {
395
- .o-sig-item .o-sig-link {
396
- display: flex;
397
- align-items: center;
398
- margin-top: var(--o-gap-2);
399
- }
400
- .o-sig-item .o-sig-link a:first-child {
401
- height: 24px;
402
- }
403
- }
404
- @media (max-width: 840px) and (max-width: 1680px) {
405
- .o-sig-item .o-sig-link a:first-child {
406
- height: 20px;
407
- }
408
- }
409
- @media (max-width: 840px) {
410
- .o-sig-item .o-sig-link .o-sig-source-icon {
411
- font-size: 24px;
412
- }
413
- }
414
- @media (max-width: 840px) and (max-width: 1680px) {
415
- .o-sig-item .o-sig-link .o-sig-source-icon {
416
- font-size: 20px;
417
- }
418
- }
419
- @media (max-width: 840px) {
420
- .o-sig-item .o-sig-link .o-sig-source-icon svg {
421
- fill: none;
422
- }
423
- .o-sig-item .o-sig-link .o-divider {
424
- --o-divider-label-gap: 0 8px;
425
- }
426
- .o-sig-item .o-sig-link .o-btn {
427
- margin-left: var(--o-gap-2);
428
- }
429
- .o-sig-item .o-sig-link .mail-link {
430
- min-width: 0;
431
- flex: 0 1 auto;
432
- }
433
- .o-sig-item .o-sig-link .mail-link .tooltip-text-wrapper {
434
- min-width: 0;
435
- flex: 1;
436
- }
437
- }
438
- @media (max-width: 840px) and (max-width: 840px) {
439
- .o-sig-item .o-sig-link {
440
- margin-top: 8px;
441
- }
442
- }
443
- @media (max-width: 840px) {
444
- .o-sig-item .o-link {
445
- padding: 0;
446
- font-size: 16px;
447
- line-height: 24px;
448
- }
449
- }
450
- @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
451
- .o-sig-item .o-link {
452
- font-size: 14px;
453
- line-height: 22px;
454
- }
455
- }
456
- @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
457
- .o-sig-item .o-link {
458
- font-size: 14px;
459
- line-height: 22px;
460
- }
461
- }
462
- @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
463
- .o-sig-item .o-link {
464
- font-size: 14px;
465
- line-height: 22px;
466
- }
467
- }
468
- @media (max-width: 840px) and (max-width: 600px) {
469
- .o-sig-item .o-link {
470
- font-size: 12px;
471
- line-height: 18px;
472
- }
473
- }
474
- @media (max-width: 840px) {
475
- .o-sig-item .o-link .o-link-label {
476
- display: flex;
477
- }
478
- }
479
- @media (max-width: 840px) and (max-width: 840px) {
480
- .o-sig-item .o-link {
481
- font-size: 18px;
482
- line-height: 26px;
483
- }
484
- }
485
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
486
- .o-sig-item .o-link {
487
- font-size: 16px;
488
- line-height: 24px;
489
- }
490
- }
491
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
492
- .o-sig-item .o-link {
493
- font-size: 14px;
494
- line-height: 22px;
495
- }
496
- }
497
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
498
- .o-sig-item .o-link {
499
- font-size: 14px;
500
- line-height: 22px;
501
- }
502
- }
503
- @media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
504
- .o-sig-item .o-link {
505
- font-size: 14px;
506
- line-height: 22px;
507
- }
508
- }
509
- @media (max-width: 840px) {
510
- .o-sig-item .o-sig-description {
511
- margin-top: var(--o-gap-2);
512
- color: var(--o-color-info2);
513
- height: 44px;
514
- font-weight: 400;
515
- overflow: hidden;
516
- text-overflow: ellipsis;
517
- word-break: break-all;
518
- display: -webkit-box;
519
- -webkit-box-orient: vertical;
520
- -webkit-line-clamp: 2;
521
- font-size: 14px;
522
- line-height: 22px;
523
- }
524
- }
525
- @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
526
- .o-sig-item .o-sig-description {
527
- font-size: 14px;
528
- line-height: 18px;
529
- }
530
- }
531
- @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
532
- .o-sig-item .o-sig-description {
533
- font-size: 12px;
534
- line-height: 18px;
535
- }
536
- }
537
- @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
538
- .o-sig-item .o-sig-description {
539
- font-size: 12px;
540
- line-height: 18px;
541
- }
542
- }
543
- @media (max-width: 840px) and (max-width: 600px) {
544
- .o-sig-item .o-sig-description {
545
- font-size: 12px;
546
- line-height: 18px;
547
- }
548
- }
549
- @media (max-width: 840px) and (max-width: 1680px) {
550
- .o-sig-item .o-sig-description {
551
- height: 36px;
552
- }
553
- }
554
- @media (max-width: 840px) and (max-width: 840px) {
555
- .o-sig-item .o-sig-description {
556
- margin-top: 6px;
557
- order: 1;
558
- height: auto;
559
- font-size: 16px;
560
- line-height: 24px;
561
- }
562
- }
563
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
564
- .o-sig-item .o-sig-description {
565
- font-size: 14px;
566
- line-height: 22px;
567
- }
568
- }
569
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
570
- .o-sig-item .o-sig-description {
571
- font-size: 14px;
572
- line-height: 22px;
573
- }
574
- }
575
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
576
- .o-sig-item .o-sig-description {
577
- font-size: 14px;
578
- line-height: 22px;
579
- }
580
- }
581
- @media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
582
- .o-sig-item .o-sig-description {
583
- font-size: 12px;
584
- line-height: 18px;
585
- }
586
- }
587
- @media (max-width: 840px) {
588
- .o-sig-item .o-sig-description .o-sig-repo {
589
- display: flex;
590
- }
591
- .o-sig-item .o-sig-description .o-sig-repo .o-sig-repo-label {
592
- color: var(--o-color-info1);
593
- font-weight: 500;
594
- margin-right: 8px;
595
- }
596
- .o-sig-item .o-sig-bottom {
597
- display: flex;
598
- align-items: center;
599
- margin-top: var(--o-gap-2);
600
- color: var(--o-color-info3);
601
- font-size: 12px;
602
- line-height: 18px;
603
- }
604
- }
605
- @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
606
- .o-sig-item .o-sig-bottom {
607
- font-size: 12px;
608
- line-height: 18px;
609
- }
610
- }
611
- @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
612
- .o-sig-item .o-sig-bottom {
613
- font-size: 12px;
614
- line-height: 18px;
615
- }
616
- }
617
- @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
618
- .o-sig-item .o-sig-bottom {
619
- font-size: 12px;
620
- line-height: 18px;
621
- }
622
- }
623
- @media (max-width: 840px) and (max-width: 600px) {
624
- .o-sig-item .o-sig-bottom {
625
- font-size: 12px;
626
- line-height: 18px;
627
- }
628
- }
629
- @media (max-width: 840px) {
630
- .o-sig-item .o-sig-bottom .o-icon {
631
- --icon-size: 16px;
632
- margin-right: 4px;
633
- }
634
- .o-sig-item .o-sig-bottom .o-icon svg path {
635
- fill: currentColor;
636
- }
637
- .o-sig-item .o-sig-bottom .o-sig-meta-text {
638
- cursor: pointer;
639
- margin-bottom: 0;
640
- }
641
- }
642
- @media (max-width: 840px) and (max-width: 840px) {
643
- .o-sig-item .o-sig-bottom {
644
- font-size: 16px;
645
- line-height: 24px;
646
- }
647
- }
648
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
649
- .o-sig-item .o-sig-bottom {
650
- font-size: 14px;
651
- line-height: 22px;
652
- }
653
- }
654
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
655
- .o-sig-item .o-sig-bottom {
656
- font-size: 14px;
657
- line-height: 22px;
658
- }
659
- }
660
- @media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
661
- .o-sig-item .o-sig-bottom {
662
- font-size: 14px;
663
- line-height: 22px;
664
- }
665
- }
666
- @media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
667
- .o-sig-item .o-sig-bottom {
668
- font-size: 12px;
669
- line-height: 18px;
670
- }
671
- }
672
- @media (max-width: 840px) {
673
- .o-sig-item .o-sig-meta {
674
- display: flex;
675
- align-items: center;
676
- }
677
- }
678
346
  .o-sig-popup-repos {
679
- width: 272px;
347
+ max-width: 272px;
348
+ min-width: 160px;
680
349
  --popup-padding: 9px 0;
681
350
  }
682
- .o-sig-popup-repos .o-sig-popup-content {
683
- max-height: 176px;
684
- }
685
351
  .o-sig-popup-repos .o-scroller {
686
352
  max-height: 176px;
687
353
  padding: 0 var(--o-gap-4);
@@ -697,12 +363,10 @@
697
363
  }
698
364
  }
699
365
  .o-sig-popup-maintainers {
700
- width: 168px;
366
+ max-width: 168px;
367
+ min-width: 120px;
701
368
  --popup-padding: 9px 0;
702
369
  }
703
- .o-sig-popup-maintainers .o-sig-popup-content {
704
- max-height: 112px;
705
- }
706
370
  .o-sig-popup-maintainers .o-scroller {
707
371
  max-height: 112px;
708
372
  padding: 0 16px;
@@ -2,10 +2,13 @@ import { GroupInfoT, SigListItemT } from '../types';
2
2
  type SigMergedItemT = SigListItemT & Partial<GroupInfoT>;
3
3
  type __VLS_Props = {
4
4
  sig: SigMergedItemT;
5
+ showFeature?: boolean;
5
6
  };
6
7
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
7
8
  "to-sig-detail": (sigName: string) => any;
8
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
9
10
  "onTo-sig-detail"?: ((sigName: string) => any) | undefined;
10
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
11
+ }>, {
12
+ showFeature: boolean;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
11
14
  export default _default;
@@ -1,4 +1,4 @@
1
- import { defineComponent, openBlock, createElementBlock, createElementVNode, toDisplayString, createVNode, unref, withCtx, createTextVNode, createBlock, createCommentVNode, Fragment, renderList } from "vue";
1
+ import { defineComponent, openBlock, createElementBlock, createElementVNode, toDisplayString, createBlock, unref, withCtx, createTextVNode, createCommentVNode, createVNode, Fragment, renderList } from "vue";
2
2
  import { OTag, OLink, OIcon, ODivider, OButton, OPopover, OScroller } from "@opensig/opendesign";
3
3
  import { useI18n } from "../../../i18n/index.mjs";
4
4
  import IconAtomGit from "../../../_virtual/icon-atomgit.mjs";
@@ -21,7 +21,8 @@ const _hoisted_11 = { class: "o-sig-popup-content" };
21
21
  const _sfc_main = /* @__PURE__ */ defineComponent({
22
22
  __name: "OSigItem",
23
23
  props: {
24
- sig: {}
24
+ sig: {},
25
+ showFeature: { type: Boolean, default: true }
25
26
  },
26
27
  emits: ["to-sig-detail"],
27
28
  setup(__props, { emit: __emit }) {
@@ -35,7 +36,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
35
36
  class: "o-sig-name",
36
37
  onClick: _cache[0] || (_cache[0] = ($event) => emit("to-sig-detail", __props.sig.name))
37
38
  }, toDisplayString(__props.sig.name), 1),
38
- createVNode(unref(OTag), {
39
+ __props.showFeature ? (openBlock(), createBlock(unref(OTag), {
40
+ key: 0,
39
41
  variant: "outline",
40
42
  class: "o-sig-type-tag"
41
43
  }, {
@@ -43,7 +45,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
43
45
  createTextVNode(toDisplayString((unref(locale) === "zh" ? __props.sig.feature_zh : __props.sig.feature_en) || unref(t)("sig.other")), 1)
44
46
  ]),
45
47
  _: 1
46
- })
48
+ })) : createCommentVNode("", true)
47
49
  ]),
48
50
  createElementVNode("div", _hoisted_3, [
49
51
  createVNode(unref(OLink), {
@@ -18,7 +18,7 @@
18
18
  }
19
19
  .o-sig-detail-member .o-sig-detail-member-box {
20
20
  background-color: var(--o-color-fill2);
21
- border-radius: var(--o-radius-xs);
21
+ border-radius: var(--sig-card-radius);
22
22
  padding: var(--o-gap-5);
23
23
  flex-grow: 1;
24
24
  }
@@ -10,8 +10,21 @@
10
10
  --link-color: var(--o-color-primary1);
11
11
  }
12
12
  .o-sig-detail-repo .o-sig-detail-repo-table {
13
- margin-top: 24px;
14
- --table-edge-padding: calc(var(--table-cell-padding) * 2);
13
+ margin-top: var(--o-gap-5);
14
+ --table-radius: var(--sig-card-radius);
15
+ }
16
+ @media (min-width: 1201px) and (max-width: 1680px) {
17
+ .o-sig-detail-repo .o-sig-detail-repo-table {
18
+ margin-top: var(--o-gap-4);
19
+ }
20
+ }
21
+ @media (max-width: 1200px) {
22
+ .o-sig-detail-repo .o-sig-detail-repo-table {
23
+ margin-top: var(--o-gap-2);
24
+ }
25
+ }
26
+ .o-sig-detail-repo .o-sig-detail-repo-table .o-table-cell.o-cell-first-col .o-table-cell__inner {
27
+ padding-left: 16px;
15
28
  }
16
29
  .o-sig-detail-repo .o-sig-detail-repo-table .o-scroller-container {
17
30
  min-width: 0;
@@ -10,6 +10,7 @@
10
10
  --_box-bg-color: var(--o-color-fill2);
11
11
  --_box-bg-color-hover: var(--o-color-fill2);
12
12
  --_box-bg-color-focus: var(--o-color-fill2);
13
+ --_box-radius: var(--sig-input-radius);
13
14
  }
14
15
  .o-sig-detail-contribute .o-sig-detail-contribute-title {
15
16
  font-weight: 600;
@@ -71,6 +72,9 @@
71
72
  line-height: 18px;
72
73
  }
73
74
  }
75
+ .o-sig-detail-contribute .o-card {
76
+ --card-radius: var(--sig-card-radius);
77
+ }
74
78
  .o-sig-detail-contribute .o-card + .o-card {
75
79
  margin-top: var(--o-gap-4);
76
80
  }
@@ -199,6 +203,9 @@
199
203
  .o-sig-detail-contribute .o-table {
200
204
  margin-top: var(--o-gap-3);
201
205
  }
206
+ .o-sig-detail-contribute .o-table .o-table-cell.o-cell-first-col .o-table-cell__inner {
207
+ padding-left: 16px;
208
+ }
202
209
  .o-sig-detail-contribute .o-table .o-scroller-container {
203
210
  min-width: 0;
204
211
  }
@@ -140,7 +140,7 @@
140
140
  margin-bottom: var(--o-gap-4);
141
141
  }
142
142
  }
143
- @media (min-width: ) {
143
+ @media (max-width: 1200px) {
144
144
  .o-video-detail-content-wrapper .o-video-card-video-list .o-card-header {
145
145
  margin-bottom: var(--o-gap-3);
146
146
  }
@@ -337,7 +337,7 @@
337
337
  padding: var(--o-gap-3) var(--o-gap-4);
338
338
  }
339
339
  }
340
- @media (min-width: ) {
340
+ @media (max-width: 1200px) {
341
341
  .o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-material-download-wrapper {
342
342
  margin-top: var(--o-gap-3);
343
343
  padding: var(--o-gap-2) var(--o-gap-3);
@@ -436,7 +436,7 @@
436
436
  margin-left: var(--o-gap-5);
437
437
  }
438
438
  }
439
- @media (min-width: ) {
439
+ @media (max-width: 1200px) {
440
440
  .o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-material-download-wrapper .o-video-material-download-size {
441
441
  margin-left: var(--o-gap-4);
442
442
  }
@@ -488,7 +488,7 @@
488
488
  margin-bottom: var(--o-gap-3);
489
489
  }
490
490
  }
491
- @media (min-width: ) {
491
+ @media (max-width: 1200px) {
492
492
  .o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-title {
493
493
  margin-bottom: var(--o-gap-2);
494
494
  }
@@ -535,7 +535,7 @@
535
535
  margin-left: var(--o-gap-3);
536
536
  }
537
537
  }
538
- @media (min-width: ) {
538
+ @media (max-width: 1200px) {
539
539
  .o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-avatar .o-video-info-detail-wrapper {
540
540
  margin-left: var(--o-gap-2);
541
541
  }
@@ -647,7 +647,7 @@
647
647
  margin-top: var(--o-gap-4);
648
648
  }
649
649
  }
650
- @media (min-width: ) {
650
+ @media (max-width: 1200px) {
651
651
  .o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-content-title {
652
652
  margin-top: var(--o-gap-3);
653
653
  }
@@ -663,7 +663,7 @@
663
663
  margin-top: var(--o-gap-3);
664
664
  }
665
665
  }
666
- @media (min-width: ) {
666
+ @media (max-width: 1200px) {
667
667
  .o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-content {
668
668
  margin-top: var(--o-gap-2);
669
669
  }
@@ -154,7 +154,7 @@ const en = {
154
154
  "meeting.meetingEtherpad": "Meeting Minutes",
155
155
  "meeting.meetingReplay": "Playback",
156
156
  "meeting.searchSubtitlePlaceholder": "Enter",
157
- "meeting.detailHalfYearMeetings": "默认显示近半年的会议。",
157
+ "meeting.detailHalfYearMeetings": "The conference system currently only retains meeting records from the past six months",
158
158
  "meeting.tencent": "Tencent",
159
159
  "meeting.etherpad": "Meeting Minutes",
160
160
  "common.confirm": "Confirm",
@@ -153,7 +153,7 @@ const zh = {
153
153
  "meeting.meetingEtherpad": "会议纪要",
154
154
  "meeting.meetingReplay": "智能回放",
155
155
  "meeting.searchSubtitlePlaceholder": "请输入搜索内容",
156
- "meeting.detailHalfYearMeetings": "默认显示近半年的会议。",
156
+ "meeting.detailHalfYearMeetings": "会议系统当前仅保留最近半年会议记录",
157
157
  "meeting.tencent": "腾讯会议",
158
158
  "meeting.etherpad": "会议纪要",
159
159
  "common.confirm": "确认",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendesign-plus-test/components",
3
- "version": "0.0.1-rc.152",
3
+ "version": "0.0.1-rc.154",
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",