@commonpub/layer 0.44.0 → 0.46.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.
|
@@ -168,7 +168,7 @@ const tagline = computed<string>(() => {
|
|
|
168
168
|
.cpub-hero-dots { position: absolute; inset: 0; background-image: radial-gradient(var(--accent-border) 1.5px, transparent 1.5px); background-size: 28px 28px; opacity: .3; }
|
|
169
169
|
.cpub-hero-lines { position: absolute; inset: 0; background-image: linear-gradient(var(--accent-bg) 1px, transparent 1px), linear-gradient(90deg, var(--accent-bg) 1px, transparent 1px); background-size: 56px 56px; }
|
|
170
170
|
.cpub-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
|
|
171
|
-
.cpub-hero-banner { display: block; width: 100%; max-height:
|
|
171
|
+
.cpub-hero-banner { display: block; width: 100%; max-height: 195px; object-fit: cover; margin-bottom: 28px; border: var(--border-width-default) solid var(--hero-border); border-radius: var(--radius); }
|
|
172
172
|
.cpub-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
|
|
173
173
|
.cpub-contest-badge { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-mono); color: var(--accent); background: var(--accent-bg); border: var(--border-width-default) solid var(--accent); padding: 3px 10px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 5px; }
|
|
174
174
|
.cpub-contest-badge i { font-size: 8px; }
|
|
@@ -42,7 +42,7 @@ export interface FeatureFlags {
|
|
|
42
42
|
rbac: boolean;
|
|
43
43
|
/** Act as an instance registry/directory (Phase 4). Default OFF. */
|
|
44
44
|
actAsRegistry: boolean;
|
|
45
|
-
/** Announce this instance to a registry (Phase 4). Default
|
|
45
|
+
/** Announce this instance to a registry (Phase 4). Default ON (discoverable). */
|
|
46
46
|
announceToRegistry: boolean;
|
|
47
47
|
/**
|
|
48
48
|
* Cross-instance delegated authorization. All sub-flags default false.
|
|
@@ -67,7 +67,7 @@ export const DEFAULT_FLAGS: FeatureFlags = {
|
|
|
67
67
|
layoutEngine: false,
|
|
68
68
|
rbac: false,
|
|
69
69
|
actAsRegistry: false,
|
|
70
|
-
announceToRegistry:
|
|
70
|
+
announceToRegistry: true,
|
|
71
71
|
identity: {
|
|
72
72
|
linkRemoteAccounts: false,
|
|
73
73
|
signInWithRemote: false,
|
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commonpub/layer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
6
|
"files": [
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"vue-router": "^4.3.0",
|
|
55
55
|
"zod": "^4.3.6",
|
|
56
56
|
"@commonpub/auth": "0.8.0",
|
|
57
|
-
"@commonpub/config": "0.17.0",
|
|
58
57
|
"@commonpub/docs": "0.6.3",
|
|
59
|
-
"@commonpub/
|
|
60
|
-
"@commonpub/learning": "0.5.2",
|
|
58
|
+
"@commonpub/config": "0.18.0",
|
|
61
59
|
"@commonpub/editor": "0.7.11",
|
|
62
60
|
"@commonpub/explainer": "0.7.15",
|
|
61
|
+
"@commonpub/protocol": "0.13.0",
|
|
62
|
+
"@commonpub/learning": "0.5.2",
|
|
63
|
+
"@commonpub/schema": "0.26.0",
|
|
63
64
|
"@commonpub/server": "2.73.0",
|
|
64
|
-
"@commonpub/ui": "0.9.2"
|
|
65
|
-
"@commonpub/protocol": "0.13.0"
|
|
65
|
+
"@commonpub/ui": "0.9.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@testing-library/jest-dom": "^6.9.1",
|