hyperframes 0.6.122-alpha.0 → 0.7.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/dist/cli.js +631 -89
- package/dist/hyperframe-runtime.js +21 -21
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +21 -21
- package/dist/skills/hyperframes/SKILL.md +81 -123
- package/dist/skills/hyperframes-cli/SKILL.md +2 -1
- package/dist/skills/hyperframes-cli/references/preview-render.md +3 -1
- package/dist/studio/assets/{index-i-MLqhmm.js → index-CnYOrmoA.js} +1 -1
- package/dist/studio/assets/index-DzWIinxk.css +1 -0
- package/dist/studio/assets/index-Z4bA3Fi0.js +374 -0
- package/dist/studio/assets/{index-DSLrl2tB.js → index-wWkKTkIq.js} +24 -24
- package/dist/studio/index.d.ts +8 -0
- package/dist/studio/index.html +3 -3
- package/dist/studio/index.js +3768 -2245
- package/dist/studio/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/studio/assets/index-Baz2T-9U.js +0 -269
- package/dist/studio/assets/index-BvEhf7SS.css +0 -1
package/dist/studio/index.d.ts
CHANGED
|
@@ -147,6 +147,14 @@ interface PlayerState {
|
|
|
147
147
|
* (drag, resize, rotate) target this instead of recomputing from playhead. */
|
|
148
148
|
activeKeyframePct: number | null;
|
|
149
149
|
setActiveKeyframePct: (pct: number | null) => void;
|
|
150
|
+
/** Motion-path "set destination" mode. Armed from the preview toolbar (replaces
|
|
151
|
+
* the old double-click-on-canvas UX); while armed, one canvas click places the
|
|
152
|
+
* new path's destination. `available` is published by MotionPathOverlay so the
|
|
153
|
+
* toolbar shows the button only when the selected element can take a path. */
|
|
154
|
+
motionPathArmed: boolean;
|
|
155
|
+
setMotionPathArmed: (armed: boolean) => void;
|
|
156
|
+
motionPathCreateAvailable: boolean;
|
|
157
|
+
setMotionPathCreateAvailable: (available: boolean) => void;
|
|
150
158
|
/** Multi-select: additional selected elements beyond selectedElementId. */
|
|
151
159
|
selectedElementIds: Set<string>;
|
|
152
160
|
toggleSelectedElementId: (id: string) => void;
|
package/dist/studio/index.html
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
7
7
|
<title>HyperFrames Studio</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-Z4bA3Fi0.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DzWIinxk.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
|
-
<div id="root"></div>
|
|
12
|
+
<div data-hf-id="hf-aph5" id="root"></div>
|
|
13
13
|
</body>
|
|
14
14
|
</html>
|