@cloudgrid-io/ui 0.23.0 → 0.25.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.
@@ -0,0 +1,88 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { cn } from "../lib/cloudgrid-cn.js";
3
+ import { Avatar } from "./avatar.js";
4
+ import { Card } from "../ui/card.js";
5
+ /**
6
+ * One post: somebody said something about a thing, at a time.
7
+ *
8
+ * The shape cloudgrid-console#677 needed and the library did not have, so the
9
+ * console composed its own from `Card` + a local `Avatar` + `EntityKindBadge` +
10
+ * `Chip` + a relative-time helper (`components/feedback/FeedbackPost.tsx`). That
11
+ * composition was the right interim — no new tokens, no invented values, every
12
+ * mark the library's own — and it is also a shape three surfaces want, with the
13
+ * console currently holding the only definition of it. Pulse and the entity
14
+ * feedback tab are the next two.
15
+ *
16
+ * The arrangement here is that component's, on purpose: the console swaps to
17
+ * this block without redesigning anything, and the two renderings of a post do
18
+ * not diverge for a release while everyone waits.
19
+ *
20
+ * ## It knows no vocabulary, and that is the whole design
21
+ *
22
+ * Every part of a post that carries product words is a NODE:
23
+ *
24
+ * - **`time`** — the library has no clock. `formatRelative` and the exact
25
+ * timestamp behind its `title` belong to the caller.
26
+ * - **`context`** — a kind badge and a link to the entity, composed by the
27
+ * caller. Which means the TOMBSTONE needs nothing here: an entity that was
28
+ * deleted or is no longer reachable is a different node in the same slot, and
29
+ * the words somebody wrote about it still render. A block that owned the link
30
+ * would have had to own that sentence too.
31
+ * - **`corner`** — the category label. The console passes Bug / Idea / Praise /
32
+ * Question / Note through `Chip`; another surface will pass something else.
33
+ * - **the body** — including a reaction. #203 is explicit that a reaction
34
+ * arrives as a node and this block owns no table for one: the library's
35
+ * reaction marks are a different set from the wire's `up` / `down`, and §23
36
+ * forbids thumbs, so the shipped words are "Liked" and "Disliked". A reaction
37
+ * with no message is a post too.
38
+ * - **`actions`** — a reply control, a resolve toggle, a menu. Optional, and the
39
+ * caller's.
40
+ *
41
+ * What is left for the block to own is the arrangement, which is the part three
42
+ * surfaces would otherwise each get slightly wrong.
43
+ *
44
+ * ## An unattributed post is a post
45
+ *
46
+ * `author.name` may be absent — an anonymous submission has no user to name —
47
+ * and the row still renders, with `unattributed` in the name's place rather than
48
+ * a blank, a collapsed lockup or a dropped post. It defaults to the word
49
+ * "Anonymous", which is plain, is what the console ships, and is the one piece
50
+ * of copy here that is not the caller's; pass the prop to say it differently.
51
+ *
52
+ * ## It is one post, and it fetches nothing
53
+ *
54
+ * No list, no order, no merge, no pagination — #203's "what it should NOT do".
55
+ * The caller owns the feed.
56
+ */
57
+ /** How many lines the body is allowed. Unset means the whole thing. */
58
+ const BODY_CLAMP = {
59
+ 1: "line-clamp-1",
60
+ 2: "line-clamp-2",
61
+ 3: "line-clamp-3",
62
+ };
63
+ function FeedPost({ author, unattributed = "Anonymous", time, context, corner, bodyLines, actions, className, children, ...props }) {
64
+ const named = Boolean(author?.name);
65
+ // Resolved once rather than at the render site: a caller's own node wins, and
66
+ // a name with no picture still gets a mark instead of a gap where one is in
67
+ // every row beside it.
68
+ const mark = author
69
+ ? (author.avatar ?? (author.name ? _jsx(Avatar, { name: author.name, size: "m" }) : null))
70
+ : null;
71
+ return (_jsxs(Card, { "data-slot": "feed-post",
72
+ // `role`, not an `as` prop. This library's `Card` is a div and does not
73
+ // take a tag, and forking it for one block would be a worse trade than
74
+ // declaring the semantics: a reader of a feed gets the same article
75
+ // boundary either way. The console's own composition used `as="article"`
76
+ // because its local Card happens to carry that prop.
77
+ role: "article",
78
+ // px too. `Card` pads on the Y axis only and leaves X to `CardHeader` and
79
+ // `CardContent`, neither of which a post uses: its whole body is one
80
+ // avatar beside one column. Without this the words start at the hairline.
81
+ className: cn("flex flex-row items-start gap-3 px-(--card-spacing)", className), ...props, children: [mark ? (_jsx("span", { "data-slot": "feed-post-avatar", "aria-hidden": "true", className: "inline-flex size-6 shrink-0 overflow-hidden rounded-pill", children: mark })) : null, _jsxs("div", { className: "flex min-w-0 flex-1 flex-col gap-1.5", children: [_jsxs("div", { className: "flex flex-wrap items-baseline gap-2", children: [_jsx("span", { "data-slot": "feed-post-author", dir: "auto", className: cn("min-w-0 truncate text-body-sm font-medium text-ink", !named && "italic"), children: named ? author?.name : unattributed }), time ? (
82
+ // text-body, not text-faint: the muted rung measures under the AA
83
+ // floor for normal text on this card, the same finding that keeps
84
+ // the entity card's panel description on this rung.
85
+ _jsx("span", { "data-slot": "feed-post-time", className: "shrink-0 text-caption text-body", children: time })) : null, corner ? (_jsx("span", { "data-slot": "feed-post-corner", className: "ms-auto shrink-0", children: corner })) : null] }), context ? (_jsx("div", { "data-slot": "feed-post-context", className: "flex min-w-0 items-center gap-2 text-body-sm", children: context })) : null, children ? (_jsx("div", { "data-slot": "feed-post-body", dir: "auto", className: cn("min-w-0 text-body-sm break-words text-ink", bodyLines ? BODY_CLAMP[bodyLines] : undefined), children: children })) : null, actions ? (_jsx("div", { "data-slot": "feed-post-actions", className: "flex flex-wrap items-center gap-2", children: actions })) : null] })] }));
86
+ }
87
+ export { FeedPost };
88
+ //# sourceMappingURL=feed-post.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feed-post.js","sourceRoot":"","sources":["../../src/blocks/feed-post.tsx"],"names":[],"mappings":"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"}
@@ -90,35 +90,59 @@
90
90
  * inspiration (not running yet).
91
91
  * OpenLiveIcon Phosphor `arrow-up-right`. Named by the issue. One
92
92
  * stroke, and it means "leaves this surface" everywhere.
93
- * EntityDashboardIcon Phosphor `gauge`. The entity card's second panel
93
+ * EntityDashboardIcon Phosphor `engine`. The entity card's second panel
94
94
  * action, and it is NOT a gear. Founder direction
95
95
  * 2026-09-08 (#182): that door opens the entity's page in
96
96
  * the console, which shows analytics and what runs under
97
97
  * the hood, so it means "look inside". A gear means
98
98
  * "change how this is configured", which is a different
99
- * page and a different promise. A needle on a dial says
100
- * readings at 14px without needing any interior detail.
99
+ * page and a different promise.
100
+ * Was `gauge`, and the live walk on 2026-09-10 (#200)
101
+ * found out why that was wrong: a dial is a READING, so
102
+ * it says "how fast is it going" and never "what is in
103
+ * there". `engine` is the metaphor drawn literally.
104
+ * `circuitry` and `cpu` were the alternates.
101
105
  * SettingsIcon Phosphor `gear-six`. Still here, still exported, for
102
106
  * the surfaces that really are settings. The six-tooth
103
107
  * gear reads cleaner at 14px than the eight-tooth `gear`
104
108
  * the build question uses.
105
109
  * ViewsIcon Phosphor `eye`, for a count in a card's stat row.
106
110
  * CommentsIcon Phosphor `chat-circle`, for the count beside it.
107
- * SaveIcon Phosphor `bookmark-simple`, for the entity card's
108
- * header actions (#176). The simple ribbon rather than
109
- * `bookmark`: the notched one turns to a smudge at 16px,
110
- * which is the size a row control actually renders at.
111
+ * SaveIcon Phosphor `push-pin`, for the entity card's header
112
+ * actions (#176). Was `bookmark-simple`; founder ruling
113
+ * 2026-09-10 (#200) is that the gesture is PINNING, so
114
+ * the pin is the honest picture and the ribbon was a
115
+ * second vocabulary for the same act.
111
116
  * MoreActionsIcon Phosphor `dots-three-vertical`. The vertical kebab, not
112
117
  * the horizontal three: a row's overflow menu is vertical
113
118
  * everywhere a user has already seen one, and the
114
119
  * horizontal form is spoken for by "and more" in prose.
115
120
  *
116
121
  * Both of the last two are ROLES, not shapes. `SaveIcon` is the mark for the
117
- * save action whether or not the thing is saved — a filled or crossed state is
118
- * the caller's, because "saved" is product state and this library holds none.
122
+ * pin action whether or not the thing is pinned — a filled or crossed state is
123
+ * the caller's, because "pinned" is product state and this library holds none.
119
124
  * `SaveFilledIcon` (#189) is the second SHAPE that caller can reach for; it is
120
125
  * still not a state, and the library still does not know whether anything is
121
- * saved.
126
+ * pinned.
127
+ *
128
+ * ## `SaveIcon` and `PinIcon` are now the same artwork, and both stay (#200)
129
+ *
130
+ * `PinIcon` has been `push-pin` since #189, for a row's "pinned — exempt from
131
+ * the expiry" action. #200 re-pointed `SaveIcon` at the same slug, so two names
132
+ * on this surface draw one glyph.
133
+ *
134
+ * That is recorded rather than resolved, deliberately, and neither name is
135
+ * removed. They are two ROLES that happen to have converged on one picture: the
136
+ * card's header control is the gesture a person performs, and `PinIcon` is the
137
+ * badge a row wears for a state the retention sweeper reads. A surface that
138
+ * shows both at once is showing an action and a status, and a rename would make
139
+ * one of those call sites read as the other. Collapsing them is also the one
140
+ * change that cannot be undone cheaply — a deleted export is a breaking change
141
+ * in every consumer at once, while a duplicate is a line of prose.
142
+ *
143
+ * The product-side rename of the console's "Saved" section to "Pinned" is NOT
144
+ * this library's call and is tracked separately. When it lands, `SaveIcon` and
145
+ * `SaveFilledIcon` become the names worth revisiting — in a major, together.
122
146
  *
123
147
  * ## The console's twenty-six (#189)
124
148
  *
@@ -146,6 +170,35 @@
146
170
  * draws travel and disclosure as different families, and a form's continue
147
171
  * button means travel.
148
172
  *
173
+ * ## The pill's two glyphs, and the one repaint they cost (#204)
174
+ *
175
+ * `HomeIcon` is new and collides with nothing: Phosphor `house-simple`, the mark
176
+ * the founder's pill draft actually draws for the first tab. `LayersIcon` does
177
+ * NOT move — the mobile tab bar's "Mine" tab and Home's own surfaces still mean
178
+ * `stack`, and Home wearing the layers mark was a stand-in in the pill only.
179
+ *
180
+ * `SpaceIcon` is the repaint. It was `folder-open` from #189 and is `grid-four`
181
+ * from here on, so the desktop pill's Spaces tab, every space row, and every
182
+ * other surface that names the role change picture together. That is the whole
183
+ * reason a role name sits in front of a slug — the swap point is one line in
184
+ * `ICON_MARKS` and no consumer edits anything — but it IS a repaint of a live
185
+ * glyph and it is worth being explicit that it was chosen, not inherited:
186
+ *
187
+ * one role, one picture the pill's tab and a space row mean the same thing.
188
+ * Giving the tab `grid-four` and leaving rows on
189
+ * `folder-open` would put two glyphs behind one idea,
190
+ * which is exactly what #167's role names prevent
191
+ * the alternative was a second name, `SpacesIcon` beside `SpaceIcon`, one
192
+ * a name a letter apart letter apart on a surface a person imports by
193
+ * autocomplete. That is a footgun with no upside
194
+ * `folder-open` leaves an unexported mark is inlined path data no consumer
195
+ * can name and a later session can quietly bind back.
196
+ * Same reasoning as the gauge in #200
197
+ *
198
+ * `grid-four` is not `squares-four`. `ReactionBuildOnIcon` is the latter and
199
+ * stays there: a reaction's mark doing navigation duty is the drift these names
200
+ * exist to stop, and the two glyphs are drawn differently besides.
201
+ *
149
202
  * ## Where a weight is doing work
150
203
  *
151
204
  * `CheckBoldIcon` used to be the only departure from `regular`. #189 added five
@@ -158,11 +211,18 @@
158
211
  * PersonBoldIcon reads by colour alone, which is the one thing a state
159
212
  * must never be carried by. Four tabs, four marks. The
160
213
  * centre plug button has no active state and no bold twin.
161
- * SaveFilledIcon Phosphor `bookmark-simple` in `fill` the solid
162
- * silhouette, not a heavier stroke. `SaveToggle`'s
163
- * icon-only variant said "saved" with lucide's
164
- * `fill="currentColor"`; a mark takes no `fill` prop, so
165
- * the shape has to be its own export.
214
+ * HomeBoldIcon Phosphor `house-simple` and `grid-four` in `bold`, for
215
+ * SpaceBoldIcon the desktop pill's four tabs (#204). Same rule, second
216
+ * surface: three of its tabs had a twin and Spaces did
217
+ * not, so that one tab said "active" with a tint and an
218
+ * `aria-current` and nothing a reader could see in the
219
+ * shape. A twin per tab, or the row is inconsistent about
220
+ * how it answers "where am I".
221
+ * SaveFilledIcon Phosphor `push-pin` in `fill` — the solid silhouette,
222
+ * not a heavier stroke. `SaveToggle`'s icon-only variant
223
+ * said "saved" with lucide's `fill="currentColor"`; a
224
+ * mark takes no `fill` prop, so the shape has to be its
225
+ * own export. `bookmark-simple` in fill until #200.
166
226
  *
167
227
  * A bold twin is a SECOND export, never a prop. A `weight` prop would put a
168
228
  * branch inside every mark and inline both sets of path data for every glyph
@@ -199,7 +259,7 @@
199
259
  * collision test reads exported names with a regex that splits the braces on
200
260
  * commas, so a sentence in there is parsed as an export name.
201
261
  */
202
- export { CubeMark as KindAgentIcon, LightbulbFilamentMark as KindInspirationIcon, LayoutMark as KindAppIcon, ArrowUpRightMark as OpenLiveIcon, GaugeMark as EntityDashboardIcon, GearSixMark as SettingsIcon, EyeMark as ViewsIcon, ChatCircleMark as CommentsIcon, BookmarkSimpleMark as SaveIcon, DotsThreeVerticalMark as MoreActionsIcon, } from "./phosphor-marks.js";
262
+ export { CubeMark as KindAgentIcon, LightbulbFilamentMark as KindInspirationIcon, LayoutMark as KindAppIcon, ArrowUpRightMark as OpenLiveIcon, EngineMark as EntityDashboardIcon, GearSixMark as SettingsIcon, EyeMark as ViewsIcon, ChatCircleMark as CommentsIcon, PushPinMark as SaveIcon, DotsThreeVerticalMark as MoreActionsIcon, } from "./phosphor-marks.js";
203
263
  /** Control affordances: the glyphs a primitive draws to work at all. */
204
264
  export { CaretDownMark as ChevronDownIcon, CaretUpMark as ChevronUpIcon, CaretRightMark as ChevronRightIcon, CaretLeftMark as ChevronLeftIcon, CheckMark as CheckIcon, CheckBoldMark as CheckBoldIcon, XMark as CloseIcon, CopyMark as CopyIcon, MinusMark as MinusIcon, PlusMark as PlusIcon, ArrowDownMark as ArrowDownIcon, } from "./phosphor-marks.js";
205
265
  /** Status: how a surface reports what happened. */
@@ -209,7 +269,7 @@ export { SparkleMark as AiIcon, DatabaseMark as DatabaseIcon, HardDriveMark as S
209
269
  /** The rest: glyphs an onboarding question or a sign-in method reaches for. */
210
270
  export { UserMark as PersonIcon, EnvelopeMark as EmailIcon, MagnifyingGlassMark as SearchIcon, MegaphoneSimpleMark as AdIcon, StackMark as LayersIcon, ChartPieSliceMark as DashboardIcon, } from "./phosphor-marks.js";
211
271
  /** Navigation: the shell's own furniture — a rail, a tab bar, a top bar. */
212
- export { PulseMark as ActivityIcon, CompassMark as DiscoverIcon, ArrowsLeftRightMark as SwitchGridIcon, FolderOpenMark as SpaceIcon, ListMark as MenuIcon, SidebarSimpleMark as SidebarToggleIcon, BellMark as NotificationsIcon, SignOutMark as SignOutIcon, CaretLeftMark as BackIcon, ArrowRightMark as ForwardIcon, } from "./phosphor-marks.js";
272
+ export { HouseSimpleMark as HomeIcon, PulseMark as ActivityIcon, CompassMark as DiscoverIcon, ArrowsLeftRightMark as SwitchGridIcon, GridFourMark as SpaceIcon, ListMark as MenuIcon, SidebarSimpleMark as SidebarToggleIcon, BellMark as NotificationsIcon, SignOutMark as SignOutIcon, CaretLeftMark as BackIcon, ArrowRightMark as ForwardIcon, } from "./phosphor-marks.js";
213
273
  /** Actions a row, a card kebab or a detail header offers. */
214
274
  export { PencilSimpleMark as EditIcon, TrashMark as DeleteIcon, PushPinMark as PinIcon, ArrowsClockwiseMark as RefreshIcon, DownloadSimpleMark as DownloadIcon, FileTextMark as DocumentIcon, ArrowUpMark as SortAscendingIcon, ArrowDownMark as SortDescendingIcon, } from "./phosphor-marks.js";
215
275
  /** Access, and the people it is about. */
@@ -217,7 +277,7 @@ export { LockSimpleMark as PrivateIcon, ShieldMark as GovernedIcon, UserPlusMark
217
277
  /** Reactions: what a person can say about an entity without writing anything. */
218
278
  export { FireMark as ReactionResonatedIcon, HeartMark as ReactionLoveIcon, WrenchMark as ReactionUsefulIcon, SquaresFourMark as ReactionBuildOnIcon, StarMark as ReactionImpressiveIcon, } from "./phosphor-marks.js";
219
279
  /** The weight departures, each replacing a numeric prop lucide used to carry. */
220
- export { PulseBoldMark as ActivityBoldIcon, CompassBoldMark as DiscoverBoldIcon, StackBoldMark as LayersBoldIcon, UserBoldMark as PersonBoldIcon, BookmarkSimpleFillMark as SaveFilledIcon, } from "./phosphor-marks.js";
280
+ export { PulseBoldMark as ActivityBoldIcon, CompassBoldMark as DiscoverBoldIcon, StackBoldMark as LayersBoldIcon, UserBoldMark as PersonBoldIcon, HouseSimpleBoldMark as HomeBoldIcon, GridFourBoldMark as SpaceBoldIcon, PushPinFillMark as SaveFilledIcon, } from "./phosphor-marks.js";
221
281
  /**
222
282
  * The props every icon above takes, and all it takes.
223
283
  *
@@ -1 +1 @@
1
- {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../src/blocks/icons.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../src/blocks/icons.tsx"],"names":[],"mappings":"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"}
@@ -90,35 +90,59 @@
90
90
  * inspiration (not running yet).
91
91
  * OpenLiveIcon Phosphor `arrow-up-right`. Named by the issue. One
92
92
  * stroke, and it means "leaves this surface" everywhere.
93
- * EntityDashboardIcon Phosphor `gauge`. The entity card's second panel
93
+ * EntityDashboardIcon Phosphor `engine`. The entity card's second panel
94
94
  * action, and it is NOT a gear. Founder direction
95
95
  * 2026-09-08 (#182): that door opens the entity's page in
96
96
  * the console, which shows analytics and what runs under
97
97
  * the hood, so it means "look inside". A gear means
98
98
  * "change how this is configured", which is a different
99
- * page and a different promise. A needle on a dial says
100
- * readings at 14px without needing any interior detail.
99
+ * page and a different promise.
100
+ * Was `gauge`, and the live walk on 2026-09-10 (#200)
101
+ * found out why that was wrong: a dial is a READING, so
102
+ * it says "how fast is it going" and never "what is in
103
+ * there". `engine` is the metaphor drawn literally.
104
+ * `circuitry` and `cpu` were the alternates.
101
105
  * SettingsIcon Phosphor `gear-six`. Still here, still exported, for
102
106
  * the surfaces that really are settings. The six-tooth
103
107
  * gear reads cleaner at 14px than the eight-tooth `gear`
104
108
  * the build question uses.
105
109
  * ViewsIcon Phosphor `eye`, for a count in a card's stat row.
106
110
  * CommentsIcon Phosphor `chat-circle`, for the count beside it.
107
- * SaveIcon Phosphor `bookmark-simple`, for the entity card's
108
- * header actions (#176). The simple ribbon rather than
109
- * `bookmark`: the notched one turns to a smudge at 16px,
110
- * which is the size a row control actually renders at.
111
+ * SaveIcon Phosphor `push-pin`, for the entity card's header
112
+ * actions (#176). Was `bookmark-simple`; founder ruling
113
+ * 2026-09-10 (#200) is that the gesture is PINNING, so
114
+ * the pin is the honest picture and the ribbon was a
115
+ * second vocabulary for the same act.
111
116
  * MoreActionsIcon Phosphor `dots-three-vertical`. The vertical kebab, not
112
117
  * the horizontal three: a row's overflow menu is vertical
113
118
  * everywhere a user has already seen one, and the
114
119
  * horizontal form is spoken for by "and more" in prose.
115
120
  *
116
121
  * Both of the last two are ROLES, not shapes. `SaveIcon` is the mark for the
117
- * save action whether or not the thing is saved — a filled or crossed state is
118
- * the caller's, because "saved" is product state and this library holds none.
122
+ * pin action whether or not the thing is pinned — a filled or crossed state is
123
+ * the caller's, because "pinned" is product state and this library holds none.
119
124
  * `SaveFilledIcon` (#189) is the second SHAPE that caller can reach for; it is
120
125
  * still not a state, and the library still does not know whether anything is
121
- * saved.
126
+ * pinned.
127
+ *
128
+ * ## `SaveIcon` and `PinIcon` are now the same artwork, and both stay (#200)
129
+ *
130
+ * `PinIcon` has been `push-pin` since #189, for a row's "pinned — exempt from
131
+ * the expiry" action. #200 re-pointed `SaveIcon` at the same slug, so two names
132
+ * on this surface draw one glyph.
133
+ *
134
+ * That is recorded rather than resolved, deliberately, and neither name is
135
+ * removed. They are two ROLES that happen to have converged on one picture: the
136
+ * card's header control is the gesture a person performs, and `PinIcon` is the
137
+ * badge a row wears for a state the retention sweeper reads. A surface that
138
+ * shows both at once is showing an action and a status, and a rename would make
139
+ * one of those call sites read as the other. Collapsing them is also the one
140
+ * change that cannot be undone cheaply — a deleted export is a breaking change
141
+ * in every consumer at once, while a duplicate is a line of prose.
142
+ *
143
+ * The product-side rename of the console's "Saved" section to "Pinned" is NOT
144
+ * this library's call and is tracked separately. When it lands, `SaveIcon` and
145
+ * `SaveFilledIcon` become the names worth revisiting — in a major, together.
122
146
  *
123
147
  * ## The console's twenty-six (#189)
124
148
  *
@@ -146,6 +170,35 @@
146
170
  * draws travel and disclosure as different families, and a form's continue
147
171
  * button means travel.
148
172
  *
173
+ * ## The pill's two glyphs, and the one repaint they cost (#204)
174
+ *
175
+ * `HomeIcon` is new and collides with nothing: Phosphor `house-simple`, the mark
176
+ * the founder's pill draft actually draws for the first tab. `LayersIcon` does
177
+ * NOT move — the mobile tab bar's "Mine" tab and Home's own surfaces still mean
178
+ * `stack`, and Home wearing the layers mark was a stand-in in the pill only.
179
+ *
180
+ * `SpaceIcon` is the repaint. It was `folder-open` from #189 and is `grid-four`
181
+ * from here on, so the desktop pill's Spaces tab, every space row, and every
182
+ * other surface that names the role change picture together. That is the whole
183
+ * reason a role name sits in front of a slug — the swap point is one line in
184
+ * `ICON_MARKS` and no consumer edits anything — but it IS a repaint of a live
185
+ * glyph and it is worth being explicit that it was chosen, not inherited:
186
+ *
187
+ * one role, one picture the pill's tab and a space row mean the same thing.
188
+ * Giving the tab `grid-four` and leaving rows on
189
+ * `folder-open` would put two glyphs behind one idea,
190
+ * which is exactly what #167's role names prevent
191
+ * the alternative was a second name, `SpacesIcon` beside `SpaceIcon`, one
192
+ * a name a letter apart letter apart on a surface a person imports by
193
+ * autocomplete. That is a footgun with no upside
194
+ * `folder-open` leaves an unexported mark is inlined path data no consumer
195
+ * can name and a later session can quietly bind back.
196
+ * Same reasoning as the gauge in #200
197
+ *
198
+ * `grid-four` is not `squares-four`. `ReactionBuildOnIcon` is the latter and
199
+ * stays there: a reaction's mark doing navigation duty is the drift these names
200
+ * exist to stop, and the two glyphs are drawn differently besides.
201
+ *
149
202
  * ## Where a weight is doing work
150
203
  *
151
204
  * `CheckBoldIcon` used to be the only departure from `regular`. #189 added five
@@ -158,11 +211,18 @@
158
211
  * PersonBoldIcon reads by colour alone, which is the one thing a state
159
212
  * must never be carried by. Four tabs, four marks. The
160
213
  * centre plug button has no active state and no bold twin.
161
- * SaveFilledIcon Phosphor `bookmark-simple` in `fill` the solid
162
- * silhouette, not a heavier stroke. `SaveToggle`'s
163
- * icon-only variant said "saved" with lucide's
164
- * `fill="currentColor"`; a mark takes no `fill` prop, so
165
- * the shape has to be its own export.
214
+ * HomeBoldIcon Phosphor `house-simple` and `grid-four` in `bold`, for
215
+ * SpaceBoldIcon the desktop pill's four tabs (#204). Same rule, second
216
+ * surface: three of its tabs had a twin and Spaces did
217
+ * not, so that one tab said "active" with a tint and an
218
+ * `aria-current` and nothing a reader could see in the
219
+ * shape. A twin per tab, or the row is inconsistent about
220
+ * how it answers "where am I".
221
+ * SaveFilledIcon Phosphor `push-pin` in `fill` — the solid silhouette,
222
+ * not a heavier stroke. `SaveToggle`'s icon-only variant
223
+ * said "saved" with lucide's `fill="currentColor"`; a
224
+ * mark takes no `fill` prop, so the shape has to be its
225
+ * own export. `bookmark-simple` in fill until #200.
166
226
  *
167
227
  * A bold twin is a SECOND export, never a prop. A `weight` prop would put a
168
228
  * branch inside every mark and inline both sets of path data for every glyph
@@ -199,7 +259,7 @@
199
259
  * collision test reads exported names with a regex that splits the braces on
200
260
  * commas, so a sentence in there is parsed as an export name.
201
261
  */
202
- export { CubeMark as KindAgentIcon, LightbulbFilamentMark as KindInspirationIcon, LayoutMark as KindAppIcon, ArrowUpRightMark as OpenLiveIcon, GaugeMark as EntityDashboardIcon, GearSixMark as SettingsIcon, EyeMark as ViewsIcon, ChatCircleMark as CommentsIcon, BookmarkSimpleMark as SaveIcon, DotsThreeVerticalMark as MoreActionsIcon, } from "./phosphor-marks.js";
262
+ export { CubeMark as KindAgentIcon, LightbulbFilamentMark as KindInspirationIcon, LayoutMark as KindAppIcon, ArrowUpRightMark as OpenLiveIcon, EngineMark as EntityDashboardIcon, GearSixMark as SettingsIcon, EyeMark as ViewsIcon, ChatCircleMark as CommentsIcon, PushPinMark as SaveIcon, DotsThreeVerticalMark as MoreActionsIcon, } from "./phosphor-marks.js";
203
263
  /** Control affordances: the glyphs a primitive draws to work at all. */
204
264
  export { CaretDownMark as ChevronDownIcon, CaretUpMark as ChevronUpIcon, CaretRightMark as ChevronRightIcon, CaretLeftMark as ChevronLeftIcon, CheckMark as CheckIcon, CheckBoldMark as CheckBoldIcon, XMark as CloseIcon, CopyMark as CopyIcon, MinusMark as MinusIcon, PlusMark as PlusIcon, ArrowDownMark as ArrowDownIcon, } from "./phosphor-marks.js";
205
265
  /** Status: how a surface reports what happened. */
@@ -209,7 +269,7 @@ export { SparkleMark as AiIcon, DatabaseMark as DatabaseIcon, HardDriveMark as S
209
269
  /** The rest: glyphs an onboarding question or a sign-in method reaches for. */
210
270
  export { UserMark as PersonIcon, EnvelopeMark as EmailIcon, MagnifyingGlassMark as SearchIcon, MegaphoneSimpleMark as AdIcon, StackMark as LayersIcon, ChartPieSliceMark as DashboardIcon, } from "./phosphor-marks.js";
211
271
  /** Navigation: the shell's own furniture — a rail, a tab bar, a top bar. */
212
- export { PulseMark as ActivityIcon, CompassMark as DiscoverIcon, ArrowsLeftRightMark as SwitchGridIcon, FolderOpenMark as SpaceIcon, ListMark as MenuIcon, SidebarSimpleMark as SidebarToggleIcon, BellMark as NotificationsIcon, SignOutMark as SignOutIcon, CaretLeftMark as BackIcon, ArrowRightMark as ForwardIcon, } from "./phosphor-marks.js";
272
+ export { HouseSimpleMark as HomeIcon, PulseMark as ActivityIcon, CompassMark as DiscoverIcon, ArrowsLeftRightMark as SwitchGridIcon, GridFourMark as SpaceIcon, ListMark as MenuIcon, SidebarSimpleMark as SidebarToggleIcon, BellMark as NotificationsIcon, SignOutMark as SignOutIcon, CaretLeftMark as BackIcon, ArrowRightMark as ForwardIcon, } from "./phosphor-marks.js";
213
273
  /** Actions a row, a card kebab or a detail header offers. */
214
274
  export { PencilSimpleMark as EditIcon, TrashMark as DeleteIcon, PushPinMark as PinIcon, ArrowsClockwiseMark as RefreshIcon, DownloadSimpleMark as DownloadIcon, FileTextMark as DocumentIcon, ArrowUpMark as SortAscendingIcon, ArrowDownMark as SortDescendingIcon, } from "./phosphor-marks.js";
215
275
  /** Access, and the people it is about. */
@@ -217,5 +277,5 @@ export { LockSimpleMark as PrivateIcon, ShieldMark as GovernedIcon, UserPlusMark
217
277
  /** Reactions: what a person can say about an entity without writing anything. */
218
278
  export { FireMark as ReactionResonatedIcon, HeartMark as ReactionLoveIcon, WrenchMark as ReactionUsefulIcon, SquaresFourMark as ReactionBuildOnIcon, StarMark as ReactionImpressiveIcon, } from "./phosphor-marks.js";
219
279
  /** The weight departures, each replacing a numeric prop lucide used to carry. */
220
- export { PulseBoldMark as ActivityBoldIcon, CompassBoldMark as DiscoverBoldIcon, StackBoldMark as LayersBoldIcon, UserBoldMark as PersonBoldIcon, BookmarkSimpleFillMark as SaveFilledIcon, } from "./phosphor-marks.js";
280
+ export { PulseBoldMark as ActivityBoldIcon, CompassBoldMark as DiscoverBoldIcon, StackBoldMark as LayersBoldIcon, UserBoldMark as PersonBoldIcon, HouseSimpleBoldMark as HomeBoldIcon, GridFourBoldMark as SpaceBoldIcon, PushPinFillMark as SaveFilledIcon, } from "./phosphor-marks.js";
221
281
  //# sourceMappingURL=icons.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"icons.js","sourceRoot":"","sources":["../../src/blocks/icons.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"icons.js","sourceRoot":"","sources":["../../src/blocks/icons.tsx"],"names":[],"mappings":"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"}
@@ -53,8 +53,8 @@ export declare const LayoutMark: ({ className }: PhosphorMarkProps) => React.JSX
53
53
  export declare const CubeMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
54
54
  /** Open it live. Phosphor `arrow-up-right`, regular. */
55
55
  export declare const ArrowUpRightMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
56
- /** Look inside — the dashboard. Phosphor `gauge`, regular. */
57
- export declare const GaugeMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
56
+ /** Look inside — the dashboard. Phosphor `engine`, regular. */
57
+ export declare const EngineMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
58
58
  /** Settings. Phosphor `gear-six`, regular. */
59
59
  export declare const GearSixMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
60
60
  /** Views. Phosphor `eye`, regular. */
@@ -119,8 +119,6 @@ export declare const MagnifyingGlassMark: ({ className }: PhosphorMarkProps) =>
119
119
  export declare const MegaphoneSimpleMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
120
120
  /** Layers, internal tools. Phosphor `stack`, regular. */
121
121
  export declare const StackMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
122
- /** Save it. Phosphor `bookmark-simple`, regular. */
123
- export declare const BookmarkSimpleMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
124
122
  /** More actions. Phosphor `dots-three-vertical`, regular. */
125
123
  export declare const DotsThreeVerticalMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
126
124
  /** Live readings — the grid's activity. Phosphor `pulse`, regular. */
@@ -129,8 +127,10 @@ export declare const PulseMark: ({ className }: PhosphorMarkProps) => React.JSX.
129
127
  export declare const CompassMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
130
128
  /** Switch to another grid. Phosphor `arrows-left-right`, regular. */
131
129
  export declare const ArrowsLeftRightMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
132
- /** A space a named folder of entities. Phosphor `folder-open`, regular. */
133
- export declare const FolderOpenMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
130
+ /** Homethe grid you land on. Phosphor `house-simple`, regular. */
131
+ export declare const HouseSimpleMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
132
+ /** A space — a named folder of entities. Phosphor `grid-four`, regular. */
133
+ export declare const GridFourMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
134
134
  /** A menu, a drawer's trigger. Phosphor `list`, regular. */
135
135
  export declare const ListMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
136
136
  /** Collapse or expand the sidebar. Phosphor `sidebar-simple`, regular. */
@@ -183,8 +183,12 @@ export declare const CompassBoldMark: ({ className }: PhosphorMarkProps) => Reac
183
183
  export declare const StackBoldMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
184
184
  /** A person, on the active tab. Phosphor `user`, bold. */
185
185
  export declare const UserBoldMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
186
- /** Saved the filled ribbon. Phosphor `bookmark-simple`, fill. */
187
- export declare const BookmarkSimpleFillMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
186
+ /** Home, on the active tab. Phosphor `house-simple`, bold. */
187
+ export declare const HouseSimpleBoldMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
188
+ /** A space, on the active tab. Phosphor `grid-four`, bold. */
189
+ export declare const GridFourBoldMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
190
+ /** Pinned — the solid pin. Phosphor `push-pin`, fill. */
191
+ export declare const PushPinFillMark: ({ className }: PhosphorMarkProps) => React.JSX.Element;
188
192
  /** Keyed by the label a caller shows, the same shape as TOOL_MARKS. */
189
193
  export declare const PHOSPHOR_MARKS: {
190
194
  readonly "A friend": ({ className }: PhosphorMarkProps) => React.JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"phosphor-marks.d.ts","sourceRoot":"","sources":["../../src/blocks/phosphor-marks.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"phosphor-marks.d.ts","sourceRoot":"","sources":["../../src/blocks/phosphor-marks.tsx"],"names":[],"mappings":"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"}