@signal9/era-ui 4.7.0 → 4.7.1

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.
@@ -232,12 +232,17 @@
232
232
 
233
233
  <span class="min-w-0 flex-1 truncate">{note.title || 'Untitled'}</span>
234
234
 
235
- <!-- One cell, three occupants: the age at rest, the actions on
236
- hover. Swapping them in place keeps the row from reflowing. -->
235
+ <!-- One cell, two occupants: the age at rest, the actions on
236
+ hover. Swapping them in place keeps the row from reflowing.
237
+ At rest EVERY row shows its age and nothing else. A pinned
238
+ row used to put a pin glyph here instead — the same glyph,
239
+ in the same slot, as the pin BUTTON one state away — so a
240
+ pinned row read as a row whose actions were stuck on. Being
241
+ pinned is already visible: those rows sort to the top, and
242
+ the button carries its latched state once you are on the
243
+ row. -->
237
244
  <span class="shrink-0 text-muted group-hover:hidden">
238
- {#if note.pinned}<Pin class="size-(--era-icon-xxs)" />{:else}{formatAge(
239
- note.updatedAt
240
- )}{/if}
245
+ {formatAge(note.updatedAt)}
241
246
  </span>
242
247
  <span
243
248
  class="hidden shrink-0 items-center gap-(--era-xs-inset-md) group-hover:flex"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signal9/era-ui",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run prepack",