mediacube-ui 0.1.395 → 0.1.397

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.397](https://github.com/MediaCubeCo/mcui/compare/v0.1.396...v0.1.397) (2025-07-22)
6
+
7
+ ### [0.1.396](https://github.com/MediaCubeCo/mcui/compare/v0.1.393...v0.1.396) (2025-07-11)
8
+
5
9
  ### [0.1.395](https://github.com/MediaCubeCo/mcui/compare/v0.1.394...v0.1.395) (2025-06-27)
6
10
 
7
11
  ### [0.1.394](https://github.com/MediaCubeCo/mcui/compare/v0.1.391...v0.1.394) (2025-06-27)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.395",
3
+ "version": "0.1.397",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -58,7 +58,14 @@
58
58
  slot="option"
59
59
  slot-scope="{ option }"
60
60
  >
61
- <mc-preview v-if="optionWithPreview || optionWithPreviewOnly" class="option__desc" size="l">
61
+ <mc-title
62
+ v-if="(optionWithPreview || optionWithPreviewOnly) && option.$isLabel"
63
+ weight="semi-bold"
64
+ variation="subtitle"
65
+ >
66
+ {{ option.$groupLabel }}
67
+ </mc-title>
68
+ <mc-preview v-else-if="optionWithPreview || optionWithPreviewOnly" class="option__desc" size="l">
62
69
  <template v-if="option?.icon || option?.image" #left>
63
70
  <mc-avatar v-if="option.image" :src="option.image" size="400" />
64
71
  <mc-svg-icon v-else :name="option.icon" :color="option.iconColor || 'main'" size="400" />
@@ -68,13 +75,6 @@
68
75
  >{{ option.text }}
69
76
  </mc-title>
70
77
  </mc-preview>
71
- <mc-title
72
- v-else-if="(optionWithPreview || optionWithPreviewOnly) && option.$isLabel"
73
- weight="semi-bold"
74
- variation="subtitle"
75
- >
76
- {{ option.$groupLabel }}
77
- </mc-title>
78
78
  <mc-tooltip
79
79
  v-else
80
80
  class="mc-field-select__options-tooltip-target"
@@ -802,6 +802,17 @@ export default {
802
802
  }
803
803
  }
804
804
  }
805
+ .vxe-table--body-wrapper {
806
+ > table {
807
+ position: relative;
808
+ &:after {
809
+ content: '';
810
+ @include position(absolute, null 0 -1px 0);
811
+ @include size(100%, 1px);
812
+ background: $color-hover-gray;
813
+ }
814
+ }
815
+ }
805
816
 
806
817
  &--open-card {
807
818
  .vxe-table--body-wrapper,