@meith/theme-clubhouse 0.37.3 → 0.37.5
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 +4 -4
- package/src/slots/board-index.tsx +16 -12
- package/src/theme.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/theme-clubhouse",
|
|
3
|
-
"version": "0.37.
|
|
3
|
+
"version": "0.37.5",
|
|
4
4
|
"description": "A sports club theme for Meith — GAA, soccer, basketball — painted from the club's own two colours.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@meith/theme-default": "^0.37.
|
|
24
|
-
"@meith/theme-kit": "^0.37.
|
|
25
|
-
"@meith/ui": "^0.37.
|
|
23
|
+
"@meith/theme-default": "^0.37.5",
|
|
24
|
+
"@meith/theme-kit": "^0.37.5",
|
|
25
|
+
"@meith/ui": "^0.37.5"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": "^19.2.0"
|
|
@@ -20,17 +20,6 @@ export function BoardIndex({
|
|
|
20
20
|
<div className="flex flex-col gap-3">{regions.announcements}</div>
|
|
21
21
|
)}
|
|
22
22
|
|
|
23
|
-
{markAllReadAction !== null && (
|
|
24
|
-
<form action={markAllReadAction} method="post" className="self-end">
|
|
25
|
-
<button
|
|
26
|
-
type="submit"
|
|
27
|
-
className={cn(BUTTON, 'bg-secondary text-secondary-foreground hover:bg-secondary/80')}
|
|
28
|
-
>
|
|
29
|
-
{c('markAllRead')}
|
|
30
|
-
</button>
|
|
31
|
-
</form>
|
|
32
|
-
)}
|
|
33
|
-
|
|
34
23
|
<div
|
|
35
24
|
className={
|
|
36
25
|
rail
|
|
@@ -38,7 +27,22 @@ export function BoardIndex({
|
|
|
38
27
|
: 'flex min-w-0 flex-col gap-4'
|
|
39
28
|
}
|
|
40
29
|
>
|
|
41
|
-
<div className="flex min-w-0 flex-col gap-4">
|
|
30
|
+
<div className="flex min-w-0 flex-col gap-4">
|
|
31
|
+
{regions.categories}
|
|
32
|
+
{markAllReadAction !== null && (
|
|
33
|
+
<form action={markAllReadAction} method="post" className="self-end">
|
|
34
|
+
<button
|
|
35
|
+
type="submit"
|
|
36
|
+
className={cn(
|
|
37
|
+
BUTTON,
|
|
38
|
+
'bg-secondary text-secondary-foreground hover:bg-secondary/80',
|
|
39
|
+
)}
|
|
40
|
+
>
|
|
41
|
+
{c('markAllRead')}
|
|
42
|
+
</button>
|
|
43
|
+
</form>
|
|
44
|
+
)}
|
|
45
|
+
</div>
|
|
42
46
|
|
|
43
47
|
{rail && (
|
|
44
48
|
<aside aria-label={c('boardActivity')} className="flex min-w-0 flex-col gap-4">
|
package/src/theme.ts
CHANGED