mediacube-ui 0.1.342 → 0.1.344
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.344](https://github.com/MediaCubeCo/mcui/compare/v0.1.343...v0.1.344) (2024-12-09)
|
|
6
|
+
|
|
7
|
+
### [0.1.343](https://github.com/MediaCubeCo/mcui/compare/v0.1.342...v0.1.343) (2024-12-06)
|
|
8
|
+
|
|
5
9
|
### [0.1.342](https://github.com/MediaCubeCo/mcui/compare/v0.1.341...v0.1.342) (2024-11-29)
|
|
6
10
|
|
|
7
11
|
### [0.1.341](https://github.com/MediaCubeCo/mcui/compare/v0.1.340...v0.1.341) (2024-11-27)
|
package/package.json
CHANGED
|
@@ -317,17 +317,14 @@ export default {
|
|
|
317
317
|
return !this.scrollable && this.hasMore
|
|
318
318
|
},
|
|
319
319
|
canShowFooter() {
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
return false
|
|
328
|
-
}
|
|
320
|
+
switch (this.footerInfo) {
|
|
321
|
+
case 'total':
|
|
322
|
+
return true
|
|
323
|
+
case 'loaded':
|
|
324
|
+
return !this.hasMore && !this.$attrs.loading && !!this.items.length
|
|
325
|
+
default:
|
|
326
|
+
return false
|
|
329
327
|
}
|
|
330
|
-
return !!this.items.length
|
|
331
328
|
},
|
|
332
329
|
tag() {
|
|
333
330
|
return `vxe-${this.componentTag}`
|
|
@@ -697,6 +694,9 @@ export default {
|
|
|
697
694
|
.vxe-table--footer-wrapper {
|
|
698
695
|
overflow-x: hidden;
|
|
699
696
|
}
|
|
697
|
+
.vxe-table--footer {
|
|
698
|
+
display: none;
|
|
699
|
+
}
|
|
700
700
|
}
|
|
701
701
|
&--clickable {
|
|
702
702
|
.vxe-table--body {
|