@lotics/ui 44.14.0 → 45.2.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/src/text_utils.ts CHANGED
@@ -103,10 +103,9 @@ export const inputTextStyleWeb = {
103
103
  // THE INK IS PART OF THE CONTRACT, because leaving it out does not mean
104
104
  // "inherit" — a native <input> ignores inherited colour and falls to the UA
105
105
  // default, PURE BLACK, while every resting value beside it renders `zinc-900`.
106
- // So a field's own text changed colour the instant it was focused: measured
107
- // rgb(24,24,27) at rest against rgb(0,0,0) editing, on an unremarkable text
108
- // field. Nothing moved which is why box geometry, insets, line boxes, fonts
109
- // and five widths all measured identical — but at 14px a darkness change
106
+ // So a field's own text changed colour the instant it was focused — the
107
+ // resting ink against the UA's black. Nothing MOVED, which is why every
108
+ // geometry check came back identical, but at body size a darkness change
110
109
  // re-weights the antialiasing of every stroke, and the eye reads that as the
111
110
  // text shifting on focus. An EMPTY field hid it completely, since a placeholder
112
111
  // sets its own colour and therefore never changed.
package/src/timeline.tsx CHANGED
@@ -17,10 +17,9 @@ export interface TimelineItem {
17
17
  /**
18
18
  * The row's identity line — CLAMPED TO TWO LINES, because it is a scan target
19
19
  * before it is a sentence. A feed is the one place user-authored prose lands in
20
- * a row primitive, and unclamped it eats the section: measured on a real
21
- * interaction log, one 700-character summary drew a 180px label — nine lines
22
- * for one entry, and the disc, which centres on the label row, ended up 80px
23
- * below the first line it was meant to sit beside.
20
+ * a row primitive, and unclamped it eats the section: one long summary can
21
+ * draw a label many lines deep, and the disc which centres on the label row
22
+ * ends up far below the first line it was meant to sit beside.
24
23
  *
25
24
  * The clamp holds while the row is COLLAPSED and lifts when it opens, so a
26
25
  * long label is readable in full without being copied anywhere. **Never repeat