mediacube-ui 0.1.442 → 0.1.444
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.444](https://github.com/MediaCubeCo/mcui/compare/v0.1.443...v0.1.444) (2026-01-12)
|
|
6
|
+
|
|
7
|
+
### [0.1.443](https://github.com/MediaCubeCo/mcui/compare/v0.1.442...v0.1.443) (2026-01-09)
|
|
8
|
+
|
|
5
9
|
### [0.1.442](https://github.com/MediaCubeCo/mcui/compare/v0.1.441...v0.1.442) (2025-12-17)
|
|
6
10
|
|
|
7
11
|
### [0.1.441](https://github.com/MediaCubeCo/mcui/compare/v0.1.440...v0.1.441) (2025-12-09)
|
package/package.json
CHANGED
|
@@ -403,7 +403,7 @@ export default {
|
|
|
403
403
|
},
|
|
404
404
|
prettyValue() {
|
|
405
405
|
if (!this.useTimezone) {
|
|
406
|
-
if (this.isRange && this.value?.filter(Boolean)?.length)
|
|
406
|
+
if (this.isRange && this.value && this.value?.filter(Boolean)?.length)
|
|
407
407
|
return this.value.map(item => dayjs.tz(item, 'Europe/London').$d)
|
|
408
408
|
return this.useFormat || (!this.setDefaultToday && !this.value)
|
|
409
409
|
? this.value
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<mc-title slot="top" weight="semi-bold" v-html="option.name" />
|
|
36
36
|
<!-- Слот для замены стандартной стрелки при выведенном превью -->
|
|
37
37
|
<slot slot="right" name="arrow" />
|
|
38
|
-
<mc-title slot="bottom" color="gray"> {{ option.text }}
|
|
38
|
+
<mc-title slot="bottom" color="gray"> {{ option.text }} </mc-title>
|
|
39
39
|
</mc-preview>
|
|
40
40
|
<div v-else class="mc-field-select__single-label">
|
|
41
41
|
<div v-if="hasPrepend" class="mc-field-select__prepend">
|