@ammduncan/easel 0.2.17 → 0.2.18
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/CHANGELOG.md +5 -0
- package/dist/client/viewer.css +0 -12
- package/dist/client/viewer.js +0 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to easel. This project adheres to [Semantic Versioning](https://semver.org/).
|
|
4
4
|
|
|
5
|
+
## 0.2.18 — 2026-05-23
|
|
6
|
+
|
|
7
|
+
### Reverted
|
|
8
|
+
- **Reverted the 0.2.17 full-bleed *card* breakout.** That change made `kind: mockup/app` cards grow to near-full viewport width — wrong axis. The actual ask was for the *content* to fill the card edge-to-edge (no inner inset), with the card itself staying at the normal reading-column width. That's already handled by app-fidelity mode (0.2.13): the wrapper sets `body { margin:0; padding:0 }`, `.push-body` has no padding, and the iframe is `width:100%`, so mockup content fills the card to its rounded edges. Cards now stay column-width again; mockup content still bleeds to the card edges.
|
|
9
|
+
|
|
5
10
|
## 0.2.17 — 2026-05-23
|
|
6
11
|
|
|
7
12
|
### Added
|
package/dist/client/viewer.css
CHANGED
|
@@ -501,18 +501,6 @@ body {
|
|
|
501
501
|
animation: pop-in 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
|
|
502
502
|
}
|
|
503
503
|
|
|
504
|
-
/* App-fidelity pushes (kind: mockup / app) break out of the feed column to
|
|
505
|
-
near-full viewport width, so desktop UI recreations render at real desktop
|
|
506
|
-
proportions instead of being squeezed to the ~1540px reading column.
|
|
507
|
-
margin-left:50% moves the left edge to the column's centre line (which is
|
|
508
|
-
the viewport centre, since .feed is margin:0 auto), then translateX(-50%)
|
|
509
|
-
pulls back by half the element's own width → viewport-centred full bleed. */
|
|
510
|
-
.push--full-bleed {
|
|
511
|
-
width: min(98vw, 1920px);
|
|
512
|
-
margin-left: 50%;
|
|
513
|
-
transform: translateX(-50%);
|
|
514
|
-
}
|
|
515
|
-
|
|
516
504
|
@keyframes pop-in {
|
|
517
505
|
from { opacity: 0; transform: translateY(10px); }
|
|
518
506
|
to { opacity: 1; transform: none; }
|
package/dist/client/viewer.js
CHANGED
|
@@ -426,11 +426,6 @@
|
|
|
426
426
|
const card = document.createElement("article");
|
|
427
427
|
card.className = "push";
|
|
428
428
|
if (opts && opts.fresh) card.classList.add("fresh");
|
|
429
|
-
// App-fidelity pushes (mockup / app) break out of the feed column to
|
|
430
|
-
// near-full viewport width so desktop screens render at real proportions.
|
|
431
|
-
if (push.kind === "mockup" || push.kind === "app") {
|
|
432
|
-
card.classList.add("push--full-bleed");
|
|
433
|
-
}
|
|
434
429
|
card.id = "push-" + push.id;
|
|
435
430
|
|
|
436
431
|
const meta = document.createElement("div");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ammduncan/easel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"description": "A live browser tab for every Claude Code (and MCP) session. The push MCP tool appends HTML cards to a scrolling feed you keep open in split-screen.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|