@pygmalionjs/pygmalion 0.6.4 → 0.6.6
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 +1 -1
- package/dist-lib/{FrozenRoutePreview-V9-gxIyv.js → FrozenRoutePreview-CBsH9Pei.js} +1577 -1494
- package/dist-lib/pygmalion.js +9262 -7515
- package/dist-lib/style.css +1 -1
- package/dist-lib/testing.js +1 -1
- package/dist-lib/types/canvas/CameraLayer.d.ts +3 -1
- package/dist-lib/types/canvas/FrameView.d.ts +2 -0
- package/dist-lib/types/editor/designImport.d.ts +7 -1
- package/dist-lib/types/editor/frameInteraction.d.ts +66 -0
- package/dist-lib/types/editor/frameScrollControls.d.ts +40 -0
- package/dist-lib/types/editor/previewBootstrap.d.ts +17 -1
- package/dist-lib/types/editor/shadowPreview.d.ts +2 -0
- package/dist-lib/types/editor/store.d.ts +27 -0
- package/dist-lib/types/editor/storyboardGraph.d.ts +17 -1
- package/dist-lib/types/editor/storyboardGraphView.d.ts +7 -0
- package/dist-lib/types/editor/storyboardJourney.d.ts +4 -0
- package/dist-lib/types/lib.d.ts +3 -1
- package/dist-lib/types/shell/ComponentStateControls.d.ts +14 -1
- package/dist-lib/types/shell/StoryboardGraphPanel.d.ts +5 -1
- package/docs/screen-state-contract.md +35 -5
- package/node/storyboard-capture-runtime.mjs +65 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -221,7 +221,7 @@ A scenario must appear in exactly one category. Invalid references, missing
|
|
|
221
221
|
coverage, and duplicate classifications fail before the editor opens.
|
|
222
222
|
|
|
223
223
|
Screen recipes support `click`, `focus`, `hover`, `focus-visible`, `active`,
|
|
224
|
-
`fill`, `check`, `press`, `wait`, and `storage` steps. Use deterministic recipes
|
|
224
|
+
`fill`, `check`, `press`, `scroll`, `wait`, and `storage` steps. Use deterministic recipes
|
|
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
|