vueless 0.0.638 → 0.0.640
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/package.json
CHANGED
package/plugin-vite.js
CHANGED
package/ui.data-table/UTable.vue
CHANGED
|
@@ -127,13 +127,11 @@ const sortedRows: ComputedRef<Row[]> = computed(() => {
|
|
|
127
127
|
});
|
|
128
128
|
});
|
|
129
129
|
|
|
130
|
-
const isFooterSticky = computed(
|
|
131
|
-
(
|
|
132
|
-
window.innerHeight < tableHeight.value &&
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
isCheckedMoreOneTableItems.value,
|
|
136
|
-
);
|
|
130
|
+
const isFooterSticky = computed(() => {
|
|
131
|
+
return (
|
|
132
|
+
window.innerHeight < tableHeight.value && props.stickyFooter && !isShownFooterPosition.value
|
|
133
|
+
);
|
|
134
|
+
});
|
|
137
135
|
|
|
138
136
|
const normalizedColumns = computed(() => normalizeColumns(props.columns));
|
|
139
137
|
|
|
@@ -72,7 +72,7 @@ export default /*tw*/ {
|
|
|
72
72
|
},
|
|
73
73
|
periodRow: "mb-1 flex min-w-64 gap-1",
|
|
74
74
|
periodButton: "{UButton} h-[3.125rem] w-full",
|
|
75
|
-
periodButtonActive: "{>periodButton} !bg-gray-
|
|
75
|
+
periodButtonActive: "{>periodButton} !bg-gray-700/15",
|
|
76
76
|
rangeSwitchWrapper: "flex items-center justify-between py-2",
|
|
77
77
|
rangeSwitchButton: "{UButton}",
|
|
78
78
|
rangeSwitchTitle: "font-medium text-sm",
|