@justai/cuts 0.14.0 → 0.15.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justai/cuts",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "A persona's named parts — the page shell that holds them, and the cuts themselves.",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
package/src/Profile.astro CHANGED
@@ -59,10 +59,13 @@ const vars = [
59
59
  <h1 class="pname" set:html={name} />
60
60
  <p class="handle">{handle}</p>
61
61
  <p class="bio">{bio}</p>
62
+ <!-- prose the face adds under its bio and ABOVE the small print (justai's purpose line). Order is
63
+ the point: a mission line that falls below the meta reads as a footnote. -->
64
+ <slot name="belowBio" />
62
65
  {meta && <p class="meta">{meta}</p>}
63
- <!-- anything else this persona's face carries (justai's purpose line, the apexes' privacy/terms
64
- nav). It stays the PERSONA's markup and therefore the persona's scope so its styling lives
65
- in the persona, while the frame above stays shared. -->
66
+ <!-- and whatever follows the small print the apexes' privacy/terms nav. Both slots stay the
67
+ PERSONA's markup, and therefore the persona's scope, so their styling lives in the persona
68
+ while the frame around them stays shared. -->
66
69
  <slot />
67
70
  </div>
68
71
  </section>