@caido-utils/components 0.2.2 → 0.2.3
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
const scrollMemory = new Map<string, number>();
|
|
3
|
-
const ROW_HEIGHT =
|
|
3
|
+
const ROW_HEIGHT = 25;
|
|
4
4
|
</script>
|
|
5
5
|
|
|
6
6
|
<script setup lang="ts">
|
|
@@ -221,14 +221,14 @@ const tablePtOptions = {
|
|
|
221
221
|
const columnPt = {
|
|
222
222
|
headerCell: {
|
|
223
223
|
class:
|
|
224
|
-
"px-2.5 py-1
|
|
224
|
+
"px-2.5 py-1 font-mono text-sm font-semibold !bg-transparent !text-inherit !border-surface-700/50 !border-t-0 !border-b-0",
|
|
225
225
|
},
|
|
226
226
|
sort: {
|
|
227
227
|
class: "!text-inherit",
|
|
228
228
|
},
|
|
229
229
|
bodyCell: {
|
|
230
230
|
class:
|
|
231
|
-
"px-2.5 py-
|
|
231
|
+
"px-2.5 py-0.5 font-mono text-sm font-semibold overflow-hidden text-ellipsis whitespace-nowrap !border-surface-700/50",
|
|
232
232
|
},
|
|
233
233
|
};
|
|
234
234
|
</script>
|