hyperframes 0.8.33 → 0.8.35
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/dist/cli.js +19576 -11226
- package/dist/commands/layout-audit.browser.js +7 -1
- package/dist/fontLocalizeCli.js +4654 -4426
- package/dist/hyperframe-runtime.js +29 -29
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +29 -29
- package/dist/hyperframes-player.global.js +1 -1
- package/dist/hyperframes-slideshow.global.js +1 -1
- package/dist/skills/hyperframes/SKILL.md +12 -11
- package/dist/skills/hyperframes-cli/SKILL.md +2 -2
- package/dist/skills/hyperframes-cli/references/init-and-scaffold.md +3 -1
- package/dist/studio/assets/{hyperframes-player-CNhkujVy.js → hyperframes-player-lPOqAC3l.js} +1 -1
- package/dist/studio/assets/{index-DOoo96Tb.js → index-BRr1JoHX.js} +182 -172
- package/dist/studio/assets/{index-CslAQ3JV.js → index-RPEcu_bT.js} +1 -1
- package/dist/studio/assets/{index-DiStlnx7.js → index-ywAULfGT.js} +1 -1
- package/dist/studio/{chunk-A7S5SGNA.js → chunk-7BP32G62.js} +294 -53
- package/dist/studio/chunk-7BP32G62.js.map +1 -0
- package/dist/studio/{domEditingLayers-JMMVOGTO.js → domEditingLayers-UKMVYXT6.js} +2 -2
- package/dist/studio/index.html +1 -1
- package/dist/studio/index.js +369 -220
- package/dist/studio/index.js.map +1 -1
- package/package.json +4 -2
- package/dist/studio/chunk-A7S5SGNA.js.map +0 -1
- /package/dist/studio/{domEditingLayers-JMMVOGTO.js.map → domEditingLayers-UKMVYXT6.js.map} +0 -0
|
@@ -1689,7 +1689,13 @@
|
|
|
1689
1689
|
axes && axes !== "normal" ? axes : ""
|
|
1690
1690
|
}`;
|
|
1691
1691
|
});
|
|
1692
|
-
|
|
1692
|
+
// img shares the same pixel-only-motion blind spot as canvas/video: an
|
|
1693
|
+
// equal-size, equal-position opaque src/visibility swap moves no
|
|
1694
|
+
// geometry and no opacity. mediaPixelHash already handles it generically
|
|
1695
|
+
// (drawImage accepts any CanvasImageSource; width/height fall back to
|
|
1696
|
+
// rect.width/height same as canvas/video), so only the element selector
|
|
1697
|
+
// needed widening.
|
|
1698
|
+
for (const media of root.querySelectorAll("canvas, video, img")) {
|
|
1693
1699
|
if (!isVisibleElement(media)) continue;
|
|
1694
1700
|
parts.push(`p:${mediaPixelHash(media)}`);
|
|
1695
1701
|
}
|