@majeanson/lac 3.4.1 → 3.4.2

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/index.mjs CHANGED
@@ -21095,6 +21095,10 @@ function generateUserGuide(features, projectName) {
21095
21095
  ${f.featureKey ? `<span class="feature-key-label">${esc(f.featureKey)}</span>` : ""}
21096
21096
  ${tags}
21097
21097
  </div>
21098
+ ${f.featureKey ? `<div class="cross-links">
21099
+ <a class="cross-link" href="./lac-wiki.html#${esc(f.featureKey)}">🗂️ Wiki</a>
21100
+ <a class="cross-link" href="./lac-raw.html#${esc(f.featureKey)}">🔩 Raw</a>
21101
+ </div>` : ""}
21098
21102
  <div class="guide-block">
21099
21103
  <div class="guide-block-label">How to use</div>
21100
21104
  <div class="guide-text">${guideHtml}</div>
@@ -21250,7 +21254,10 @@ body {
21250
21254
  .feature-page.hidden, .home-page.hidden { display: none; }
21251
21255
  .feature-domain-eyebrow { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
21252
21256
  .feature-title { font-size: 28px; font-weight: 800; color: var(--text); letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 12px; }
21253
- .feature-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
21257
+ .feature-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
21258
+ .cross-links { display: flex; gap: 8px; margin-bottom: 24px; }
21259
+ .cross-link { font-family: var(--mono); font-size: 11px; color: var(--text-soft); text-decoration: none; padding: 3px 10px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-card); }
21260
+ .cross-link:hover { color: var(--accent); border-color: var(--accent); }
21254
21261
  .status-badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-family: var(--mono); font-size: 10px; border: 1px solid; }
21255
21262
  .status-badge.frozen { color: var(--status-frozen); border-color: rgba(91,130,204,0.4); background: var(--status-frozen-bg); }
21256
21263
  .status-badge.active { color: var(--status-active); border-color: rgba(74,173,114,0.4); background: var(--status-active-bg); }