mediacube-ui 0.1.439 → 0.1.441

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.441](https://github.com/MediaCubeCo/mcui/compare/v0.1.440...v0.1.441) (2025-12-09)
6
+
7
+ ### [0.1.440](https://github.com/MediaCubeCo/mcui/compare/v0.1.439...v0.1.440) (2025-12-08)
8
+
5
9
  ### [0.1.439](https://github.com/MediaCubeCo/mcui/compare/v0.1.438...v0.1.439) (2025-12-08)
6
10
 
7
11
  ### [0.1.438](https://github.com/MediaCubeCo/mcui/compare/v0.1.437...v0.1.438) (2025-12-02)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.439",
3
+ "version": "0.1.441",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -32,7 +32,7 @@
32
32
  <mc-avatar v-if="option.image" :src="option.image" size="400" />
33
33
  <mc-svg-icon v-else :name="option.icon" :color="option.iconColor || 'main'" size="400" />
34
34
  </template>
35
- <mc-title slot="top" weight="semi-bold" v-html="option.name + 'ee'" />
35
+ <mc-title slot="top" weight="semi-bold" v-html="option.name" />
36
36
  <!-- Слот для замены стандартной стрелки при выведенном превью -->
37
37
  <slot slot="right" name="arrow" />
38
38
  <mc-title slot="bottom" color="gray"> {{ option.text }} kk </mc-title>
@@ -46,7 +46,7 @@
46
46
  class="mc-field-select__label-text"
47
47
  :class="hasPrepend ? 'mc-field-select__label-text--indent-left' : ''"
48
48
  >
49
- {{ option ? option.name + 'rar' : placeholder }}
49
+ {{ option ? option.name : placeholder }}
50
50
  </div>
51
51
  </div>
52
52
  </template>
@@ -59,7 +59,7 @@
59
59
  :closable="!option.hasOwnProperty('is_closable') || option.is_closable"
60
60
  @click="remove(option)"
61
61
  >
62
- {{ option.name + 'tt' }}
62
+ {{ option.name }}
63
63
  </mc-chip>
64
64
  </template>
65
65
  <template
@@ -82,10 +82,10 @@
82
82
  <mc-title
83
83
  slot="top"
84
84
  :weight="optionWithPreviewOnly ? '' : 'semi-bold'"
85
- v-html="option.name + 'yy'"
85
+ v-html="option.name"
86
86
  />
87
87
  <mc-title v-if="!!option.text" slot="bottom" color="dark-gray" :pre-line="option.preLine"
88
- >{{ option.text + 'lll' }}
88
+ >{{ option.text }}
89
89
  </mc-title>
90
90
  </mc-preview>
91
91
  <mc-tooltip
@@ -96,7 +96,7 @@
96
96
  placement="top"
97
97
  :content="option.name"
98
98
  >
99
- <span>{{ option.name + '[[[' }}</span>
99
+ <span>{{ option.name }}</span>
100
100
  </mc-tooltip>
101
101
  </template>
102
102
  <!-- @slot Слот для текста, если ничего не найдено -->
@@ -196,7 +196,7 @@ export default {
196
196
 
197
197
  window.addEventListener('hashchange', () => this.selectTab(window.location.hash))
198
198
 
199
- if (this.findTab(window.location.hash)) {
199
+ if (!!window.location.hash && this.findTab(window.location.hash)) {
200
200
  this.selectTab(window.location.hash)
201
201
  return
202
202
  }