mediacube-ui 0.1.392 → 0.1.394

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.394](https://github.com/MediaCubeCo/mcui/compare/v0.1.391...v0.1.394) (2025-06-27)
6
+
7
+ ### [0.1.393](https://github.com/MediaCubeCo/mcui/compare/v0.1.392...v0.1.393) (2025-06-26)
8
+
5
9
  ### [0.1.392](https://github.com/MediaCubeCo/mcui/compare/v0.1.390...v0.1.392) (2025-06-26)
6
10
 
7
11
  ### 0.1.391 (2025-06-25)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.392",
3
+ "version": "0.1.394",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -63,7 +63,7 @@
63
63
  <mc-avatar v-if="option.image" :src="option.image" size="400" />
64
64
  <mc-svg-icon v-else :name="option.icon" :color="option.iconColor || 'main'" size="400" />
65
65
  </template>
66
- <mc-title slot="top" v-html="option.name" />
66
+ <mc-title slot="top" :weight="optionWithPreviewOnly ? '' : 'semi-bold'" v-html="option.name" />
67
67
  <mc-title v-if="!!option.text" slot="bottom" color="dark-gray" :pre-line="option.preLine"
68
68
  >{{ option.text }}
69
69
  </mc-title>
@@ -164,6 +164,11 @@ export default {
164
164
  box-shadow: $shadow-s;
165
165
  padding: $space-100 $space-150;
166
166
  background-color: var(--mc-tooltip-background-color);
167
+ ul {
168
+ margin: 0;
169
+ padding: 0;
170
+ list-style-position: inside;
171
+ }
167
172
  &__content {
168
173
  color: var(--mc-tooltip-color);
169
174
  font-family: $font-family-main;