mediacube-ui 0.1.396 → 0.1.398

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.398](https://github.com/MediaCubeCo/mcui/compare/v0.1.397...v0.1.398) (2025-07-23)
6
+
7
+ ### [0.1.397](https://github.com/MediaCubeCo/mcui/compare/v0.1.396...v0.1.397) (2025-07-22)
8
+
5
9
  ### [0.1.396](https://github.com/MediaCubeCo/mcui/compare/v0.1.393...v0.1.396) (2025-07-11)
6
10
 
7
11
  ### [0.1.395](https://github.com/MediaCubeCo/mcui/compare/v0.1.394...v0.1.395) (2025-06-27)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.396",
3
+ "version": "0.1.398",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -403,12 +403,13 @@ export default {
403
403
  },
404
404
  prettyValue() {
405
405
  if (!this.useTimezone) {
406
- if (this.isRange && this.value) return this.value.map(item => new Date(item))
407
- return this.useFormat || (!this.setDefaultToday && !this.value)
408
- ? this.value
409
- : this.value
410
- ? new Date(this.value)
411
- : new Date()
406
+ if (this.isRange && this.value?.filter(Boolean)?.length)
407
+ return this.value.map(item => dayjs.tz(item, 'Europe/London').$d)
408
+ return this.useFormat || (!this.setDefaultToday && !this.value)
409
+ ? this.value
410
+ : this.value
411
+ ? new Date(this.value)
412
+ : new Date()
412
413
  }
413
414
  const formattingDate = date =>
414
415
  dayjs.tz(dayjs.utc(date, 'YYYY-MM-DD HH:mm:ss'), this.currentTimezone).format(this.format)
@@ -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,