@fuzdev/fuz_gitops 0.65.0 → 0.65.1
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/dist/ReposTable.svelte +0 -5
- package/dist/ReposTreeNav.svelte +1 -11
- package/package.json +3 -3
package/dist/ReposTable.svelte
CHANGED
|
@@ -179,12 +179,7 @@
|
|
|
179
179
|
td {
|
|
180
180
|
padding: 0 var(--space_xs);
|
|
181
181
|
}
|
|
182
|
-
tr:hover {
|
|
183
|
-
background-color: var(--fg_50);
|
|
184
|
-
}
|
|
185
182
|
.latest {
|
|
186
|
-
/* TODO even lighter, add `--text_color_7` to Fuz probably, or change the scaling of `--text_color_3` and `--text_color_5` */
|
|
187
183
|
color: var(--text_50);
|
|
188
|
-
opacity: var(--disabled_opacity);
|
|
189
184
|
}
|
|
190
185
|
</style>
|
package/dist/ReposTreeNav.svelte
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</script>
|
|
17
17
|
|
|
18
18
|
<nav>
|
|
19
|
-
<menu class="
|
|
19
|
+
<menu class="panel p_md">
|
|
20
20
|
{#each repos as repo (repo.name)}
|
|
21
21
|
{@const selected = repo === selected_repo}
|
|
22
22
|
<li style:display="contents">
|
|
@@ -44,14 +44,4 @@
|
|
|
44
44
|
padding: var(--space_lg);
|
|
45
45
|
padding-right: 0;
|
|
46
46
|
}
|
|
47
|
-
.names {
|
|
48
|
-
padding: var(--space_md);
|
|
49
|
-
}
|
|
50
|
-
/* TODO should be a CSS class or variable, probably add :focus behavior */
|
|
51
|
-
.names a:hover {
|
|
52
|
-
background-color: var(--fg_50);
|
|
53
|
-
}
|
|
54
|
-
.names a:is(:active, .selected) {
|
|
55
|
-
background-color: var(--fg_70);
|
|
56
|
-
}
|
|
57
47
|
</style>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fuzdev/fuz_gitops",
|
|
3
|
-
"version": "0.65.
|
|
3
|
+
"version": "0.65.1",
|
|
4
4
|
"description": "a tool for managing many repos",
|
|
5
5
|
"glyph": "🪄",
|
|
6
6
|
"logo": "logo.svg",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@changesets/changelog-git": "^0.2.1",
|
|
42
42
|
"@fuzdev/fuz_code": "^0.45.0",
|
|
43
|
-
"@fuzdev/fuz_css": "^0.
|
|
44
|
-
"@fuzdev/fuz_ui": "^0.183.
|
|
43
|
+
"@fuzdev/fuz_css": "^0.50.0",
|
|
44
|
+
"@fuzdev/fuz_ui": "^0.183.1",
|
|
45
45
|
"@fuzdev/fuz_util": "^0.50.1",
|
|
46
46
|
"@fuzdev/gro": "^0.192.1",
|
|
47
47
|
"@jridgewell/trace-mapping": "^0.3.31",
|