@surveystudio/node-registery 1.3.0 → 1.5.0
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 +14 -1
- package/dist/builder.d.mts +923 -13
- package/dist/builder.mjs +683 -11
- package/dist/{coreTypes-CyFAym5A.d.mts → coreTypes-D5NniS2n.d.mts} +6 -1
- package/dist/logic.d.mts +29 -87
- package/dist/logic.mjs +577 -40
- package/dist/runner.d.mts +2 -2
- package/dist/{types-4zXsOMLb.d.mts → types-BMMQVXYP.d.mts} +1 -1
- package/dist/types-D3jarfsb.d.mts +265 -0
- package/package.json +1 -1
- package/dist/types-BMnck1ag.d.mts +0 -59
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ Use `/logic` for Worker, export, and server runtimes. It is intentionally React-
|
|
|
16
16
|
|
|
17
17
|
Use `/runner` and `/builder` only in React runtimes. React is a peer dependency and is not bundled.
|
|
18
18
|
|
|
19
|
+
Builder manifests/adapters are available for the migrated input, choice, scale, structured choice, consent, media, flow, captcha, emoji rating, and plain text nodes.
|
|
20
|
+
|
|
19
21
|
## Logic Pipeline
|
|
20
22
|
|
|
21
23
|
Every node logic module should expose the same pure, Worker-safe pipeline:
|
|
@@ -42,9 +44,20 @@ Migrated nodes:
|
|
|
42
44
|
- `multipleChoice` logic
|
|
43
45
|
- `dropdown` logic
|
|
44
46
|
- `ranking` logic
|
|
47
|
+
- `matrixChoice` logic
|
|
48
|
+
- `cascadingChoice` logic
|
|
45
49
|
- `rating` logic
|
|
46
50
|
- `slider` logic
|
|
47
51
|
- `consent` logic
|
|
52
|
+
- `captcha` logic
|
|
53
|
+
- `image` logic
|
|
54
|
+
- `video` logic
|
|
55
|
+
- `audio` logic
|
|
48
56
|
- `plainText`
|
|
57
|
+
- `emojiRating` logic
|
|
58
|
+
- `start` logic
|
|
59
|
+
- `end` logic
|
|
60
|
+
- `branch` logic
|
|
61
|
+
- `validation` logic
|
|
49
62
|
|
|
50
|
-
The registry contract test
|
|
63
|
+
The registry contract test covers every migrated logic and builder node so package consumers fail fast if an entrypoint goes stale.
|