@pygmalionjs/pygmalion 0.6.1 → 0.6.2
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/README.md +3 -1
- package/dist-lib/{FrozenRoutePreview-3yddEUJs.js → FrozenRoutePreview-X4XRmf9G.js} +1834 -1515
- package/dist-lib/pygmalion.js +6602 -6320
- package/dist-lib/style.css +1 -1
- package/dist-lib/testing.js +1 -1
- package/dist-lib/types/canvas/ObjectControls.d.ts +8 -5
- package/dist-lib/types/editor/automaticMotion.d.ts +24 -0
- package/dist-lib/types/editor/automaticPseudoStates.d.ts +1 -0
- package/dist-lib/types/editor/previewBootstrap.d.ts +1 -1
- package/dist-lib/types/editor/projectRuntime.d.ts +5 -0
- package/dist-lib/types/editor/shadowPreview.d.ts +9 -0
- package/dist-lib/types/editor/store.d.ts +22 -0
- package/docs/screen-state-contract.md +23 -1
- package/node/automatic-motion-runtime.mjs +279 -0
- package/node/automatic-pseudo-runtime.mjs +8 -1
- package/node/dev-mirror.mjs +79 -8
- package/node/storyboard-canonical.mjs +1 -1
- package/node/storyboard-capture-runtime.mjs +29 -8
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -225,7 +225,9 @@ Screen recipes support `click`, `focus`, `hover`, `focus-visible`, `active`,
|
|
|
225
225
|
and assertions so each frame represents a repeatable application state. The
|
|
226
226
|
[screen state contract](./docs/screen-state-contract.md) defines when a
|
|
227
227
|
variation is a frame, an interaction state, a condition state, an editable
|
|
228
|
-
parameter, or behavior-only QA.
|
|
228
|
+
parameter, a motion preview, or behavior-only QA. Rendered CSS and Web
|
|
229
|
+
Animations targets are automatically available in the right-panel Motion
|
|
230
|
+
controls with play, pause, reset, target isolation, and phase scrubbing.
|
|
229
231
|
|
|
230
232
|
Keep user journeys explicit instead of relying only on source navigation
|
|
231
233
|
inference. Paths expand into adjacent graph edges, and source-discovered edges
|