@mptw/skylens-ui 1.5.3 → 1.5.4
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.
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
v-else
|
|
63
63
|
:colspan="columnSpans[index]"
|
|
64
64
|
:key="`${itemIndex}-${field.key}`"
|
|
65
|
-
:class='[tdBorderColor
|
|
65
|
+
:class='[`${tdBorderColor}/50`, field._colClass, { sortable: field.sortable }]'
|
|
66
66
|
) {{ item[field.key] }}
|
|
67
67
|
template(v-for="(item, itemIndex) in items" :key="itemIndex")
|
|
68
68
|
tr(
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
v-else
|
|
84
84
|
:colspan="columnSpans[index]"
|
|
85
85
|
:key="`${itemIndex}-${field.key}`"
|
|
86
|
-
:class='[tdBorderColor
|
|
86
|
+
:class='[`${tdBorderColor}/50`, field._colClass, { sortable: field.sortable }]'
|
|
87
87
|
) {{ item[field.key] }}
|
|
88
88
|
tr(v-if="items.length === 0")
|
|
89
89
|
td(:colspan="fields.length")
|
|
@@ -414,7 +414,9 @@ export default defineComponent({
|
|
|
414
414
|
|
|
415
415
|
.table table thead tr th .sort-icon {
|
|
416
416
|
@apply opacity-0;
|
|
417
|
-
transition:
|
|
417
|
+
transition:
|
|
418
|
+
transform 0.2s ease,
|
|
419
|
+
opacity 0.1s ease;
|
|
418
420
|
}
|
|
419
421
|
|
|
420
422
|
.table table thead tr th:hover .sort-icon,
|
|
@@ -435,7 +437,7 @@ export default defineComponent({
|
|
|
435
437
|
}
|
|
436
438
|
|
|
437
439
|
.table table tbody tr td {
|
|
438
|
-
@apply p-2 border-b
|
|
440
|
+
@apply p-2 border-b text-base text-pgray-2;
|
|
439
441
|
}
|
|
440
442
|
|
|
441
443
|
.table table tbody tr td.text-right.sortable {
|