@doenet/doenetml-iframe 0.7.24-dev.487 → 0.7.24-dev.489
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 +8 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -425,6 +425,14 @@ failure to the student instead, respond with
|
|
|
425
425
|
`{ subject: "SPLICE.getState.response", error: { code, message } }`
|
|
426
426
|
(and no `message_id`).
|
|
427
427
|
|
|
428
|
+
A request has a single answer: the **first** response carrying state for
|
|
429
|
+
this `cid` is the one the viewer reboots from, and later responses to the
|
|
430
|
+
same `message_id` are ignored. A response with no state — or state for a
|
|
431
|
+
different `cid` — does not count as that answer, so a listener with nothing
|
|
432
|
+
saved cannot shut out one still in flight. Answer once, out of durable
|
|
433
|
+
storage: a host that replies from an in-memory cache first and from storage
|
|
434
|
+
afterwards keeps the cache's answer.
|
|
435
|
+
|
|
428
436
|
Passing `initialState` yourself (or `initialState: null` for "start
|
|
429
437
|
fresh") skips this request entirely.
|
|
430
438
|
|
package/index.js
CHANGED
|
@@ -68530,7 +68530,7 @@ function ExternalVirtualKeyboard({
|
|
|
68530
68530
|
}
|
|
68531
68531
|
);
|
|
68532
68532
|
}
|
|
68533
|
-
const version = "0.7.24-dev.
|
|
68533
|
+
const version = "0.7.24-dev.489";
|
|
68534
68534
|
const latestDoenetmlVersion = version;
|
|
68535
68535
|
function subscribeToPinnedTheme() {
|
|
68536
68536
|
return () => {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@doenet/doenetml-iframe",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "A renderer for DoenetML contained in an iframe",
|
|
5
|
-
"version": "0.7.24-dev.
|
|
5
|
+
"version": "0.7.24-dev.489",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
7
7
|
"homepage": "https://github.com/Doenet/DoenetML#readme",
|
|
8
8
|
"repository": {
|