@lotics/ui 7.19.0 → 7.19.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lotics/ui",
3
- "version": "7.19.0",
3
+ "version": "7.19.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./tokens": "./src/tokens.ts",
package/src/agent_run.tsx CHANGED
@@ -379,18 +379,20 @@ function ToolGroup(props: {
379
379
  }
380
380
 
381
381
  const styles = StyleSheet.create({
382
- narration: { paddingHorizontal: 8 },
382
+ // No horizontal self-inset: the run sits flush so the CONSUMER'S gutter governs
383
+ // alignment (an 8px inset made its text misalign with dialog titles / sibling
384
+ // lines in every padded container).
385
+ narration: {},
383
386
  group: { gap: 2 },
384
387
  row: {
385
388
  flexDirection: "row",
386
389
  alignItems: "center",
387
390
  gap: 10,
388
391
  minHeight: CONTROL_HEIGHT,
389
- paddingHorizontal: 8,
390
392
  borderRadius: CONTROL_RADIUS,
391
393
  },
392
394
  dotCol: { width: 18, alignItems: "center" },
393
395
  rowBody: { flex: 1 },
394
396
  // Reasoning body aligns under the "Thinking" label (past the dot column + gap).
395
- reasoning: { paddingLeft: 36, paddingRight: 8, paddingBottom: 4 },
397
+ reasoning: { paddingLeft: 28, paddingBottom: 4 },
396
398
  });