Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 0.2.1 - Unreleased

- Fixed the thread reply composer send button sitting mid-row instead of flush right in thread panels and embeds.
- Added a standalone, live-updating, cookie-authenticated thread embed with the shared thread composer and rendering, public route IDs, focused auth recovery, and an opt-in per-origin `/embed/*` frame policy.
- Signed and notarized macOS desktop release bundles with the OpenClaw Foundation identity, hardened runtime, and strict sealed-artifact verification.

Expand Down
8 changes: 4 additions & 4 deletions apps/api/internal/webassets/dist/200.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
<link href="/_app/immutable/chunks/CX2IBWVU.js" rel="modulepreload">
<link href="/_app/immutable/chunks/DK3Fl9T5.js" rel="modulepreload">
<link href="/_app/immutable/chunks/BuFlayix.js" rel="modulepreload">
<link href="/_app/immutable/entry/app.Bsb6xClM.js" rel="modulepreload">
<link href="/_app/immutable/entry/app.DdC6kbf1.js" rel="modulepreload">
<link href="/_app/immutable/chunks/HclGiUj8.js" rel="modulepreload">
<link href="/_app/immutable/chunks/xihTtKlq.js" rel="modulepreload">
<link href="/_app/immutable/nodes/0.B_nJVpRW.js" rel="modulepreload">
<link href="/_app/immutable/nodes/0.D7cjHtvY.js" rel="modulepreload">

<link href="/_app/immutable/assets/0.B4KZu4e-.css" rel="stylesheet">
<link href="/_app/immutable/assets/0.DPLRio63.css" rel="stylesheet">
</head>
<body>
<div>
Expand All @@ -49,7 +49,7 @@

Promise.all([
import("/_app/immutable/entry/start.DpGC7Oln.js"),
import("/_app/immutable/entry/app.Bsb6xClM.js")
import("/_app/immutable/entry/app.DdC6kbf1.js")
]).then(([kit, app]) => {
kit.start(app, element);
});
Expand Down

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions apps/api/internal/webassets/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
<link href="./_app/immutable/chunks/CX2IBWVU.js" rel="modulepreload">
<link href="./_app/immutable/chunks/DK3Fl9T5.js" rel="modulepreload">
<link href="./_app/immutable/chunks/BuFlayix.js" rel="modulepreload">
<link href="./_app/immutable/entry/app.Bsb6xClM.js" rel="modulepreload">
<link href="./_app/immutable/entry/app.DdC6kbf1.js" rel="modulepreload">
<link href="./_app/immutable/chunks/HclGiUj8.js" rel="modulepreload">
<link href="./_app/immutable/chunks/xihTtKlq.js" rel="modulepreload">
<link href="./_app/immutable/nodes/0.B_nJVpRW.js" rel="modulepreload">
<link href="./_app/immutable/nodes/0.D7cjHtvY.js" rel="modulepreload">
<link href="./_app/immutable/nodes/3.Byc2fJWl.js" rel="modulepreload">
<link href="./_app/immutable/chunks/BMVuLp4J.js" rel="modulepreload">

<link href="./_app/immutable/assets/0.B4KZu4e-.css" rel="stylesheet">
<link href="./_app/immutable/assets/0.DPLRio63.css" rel="stylesheet">
<link href="./_app/immutable/assets/ProductSite.4q0lYJor.css" rel="stylesheet">
</head>
<body>
Expand All @@ -52,7 +52,7 @@

Promise.all([
import("./_app/immutable/entry/start.DpGC7Oln.js"),
import("./_app/immutable/entry/app.Bsb6xClM.js")
import("./_app/immutable/entry/app.DdC6kbf1.js")
]).then(([kit, app]) => {
kit.start(app, element);
});
Expand Down
9 changes: 8 additions & 1 deletion apps/web/src/styles/composer.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,10 @@
--composer-text-padding-block: 7px;

display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
/* Columns must match the rendered children: the upload icon is optional
(thread reply composers omit it), and a phantom icon column would shove
the textarea left and strand the send button mid-row. */
grid-template-columns: minmax(0, 1fr) auto;
align-items: start;
gap: 4px;
padding: 8px 8px 4px 10px;
Expand All @@ -352,6 +355,10 @@
border-radius: 0;
}

.composer-row:has(.composer-icon) {
grid-template-columns: auto minmax(0, 1fr) auto;
}

.composer:focus-within .composer-toolbar,
.composer-row:focus-within {
border-color: transparent;
Expand Down