@meith/theme-clubhouse 0.21.2 → 0.23.0
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/shared.tsx +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/theme-clubhouse",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
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.
|
|
24
|
-
"@meith/
|
|
25
|
-
"@meith/
|
|
23
|
+
"@meith/theme-default": "^0.23.0",
|
|
24
|
+
"@meith/theme-kit": "^0.23.0",
|
|
25
|
+
"@meith/ui": "^0.23.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": "^19.2.0"
|
package/src/shared.tsx
CHANGED
|
@@ -30,11 +30,9 @@ export const TAB =
|
|
|
30
30
|
export const BUTTON =
|
|
31
31
|
'inline-flex h-8 items-center rounded-sm px-3 text-[0.6875rem] font-bold tracking-[0.08em] whitespace-nowrap uppercase transition-colors'
|
|
32
32
|
|
|
33
|
-
/** The columns every listing shares: name, two counts, and what happened last. */
|
|
34
33
|
export const TABLE_ROW =
|
|
35
34
|
'grid grid-cols-[auto_minmax(0,1fr)] gap-x-3 gap-y-1.5 px-4 py-2.5 md:grid-cols-[auto_minmax(0,1fr)_4.5rem_4.5rem_14rem] md:items-center'
|
|
36
35
|
|
|
37
|
-
/** The club's two colours, stacked — the stripe every panel is hung on. */
|
|
38
36
|
export function ClubBar({ className }: { className?: string }) {
|
|
39
37
|
return (
|
|
40
38
|
<span
|
|
@@ -47,7 +45,6 @@ export function ClubBar({ className }: { className?: string }) {
|
|
|
47
45
|
)
|
|
48
46
|
}
|
|
49
47
|
|
|
50
|
-
/** The same pair laid flat, under the masthead and over the footer. */
|
|
51
48
|
export function ClubRule({ className }: { className?: string }) {
|
|
52
49
|
return (
|
|
53
50
|
<span aria-hidden="true" className={cn('flex h-1 w-full', className)}>
|