Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions dev/testActivity.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"type": "singleDoc",
"isDescription": false,
"doenetML": "<problem>2+2=<answer>4</answer><selectFromSequence /></problem>",
"version": "0.7.21",
"version": "0.7.24",
"numVariants": 10
},
{
Expand All @@ -25,7 +25,7 @@
"type": "singleDoc",
"isDescription": false,
"doenetML": "<problem>1+1=<answer>2</answer><selectFromSequence length='3' /></problem><problem>4+4=<answer>8</answer><selectFromSequence length='4' /></problem>",
"version": "0.7.21",
"version": "0.7.24",
"numVariants": 12
}
]
Expand All @@ -41,31 +41,31 @@
"type": "singleDoc",
"isDescription": false,
"doenetML": "<question>Question 1A <graph><point name='P'/></graph><answer><award><when>$P.x > 0</when></award></answer></question>",
"version": "0.7.21",
"version": "0.7.24",
"numVariants": 1
},
{
"id": "sel2b",
"type": "singleDoc",
"isDescription": false,
"doenetML": "<question>Question 1B <p>Enter: <select name='a'>a b c</select>. <answer>$a</answer></p></question>",
"version": "0.7.21",
"version": "0.7.24",
"numVariants": 3
},
{
"id": "sel2c",
"type": "singleDoc",
"isDescription": false,
"doenetML": "<question>Question 1C <p>Enter: <selectFromSequence name='a' />. <answer>$a</answer></p></question>",
"version": "0.7.21",
"version": "0.7.24",
"numVariants": 10
},
{
"id": "sel2d",
"type": "singleDoc",
"isDescription": false,
"doenetML": "<question>Question 1D <p>Enter: <selectFromSequence name='a' length=\"5\" />. <answer>$a</answer></p></question>",
"version": "0.7.21",
"version": "0.7.24",
"numVariants": 5
}
]
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@doenet/assignment-viewer",
"private": false,
"description": "View assignments from questions written in DoenetML",
"version": "0.1.0-alpha-16",
"version": "0.1.0-alpha-17",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Doenet/assignment-viewer#readme",
"type": "module",
Expand Down Expand Up @@ -38,7 +38,7 @@
"prettier:check": "prettier --check ."
},
"peerDependencies": {
"@doenet/doenetml-iframe": "^0.7.21",
"@doenet/doenetml-iframe": "^0.7.24",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
Expand All @@ -49,7 +49,7 @@
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@doenet/doenetml-iframe": "0.7.21",
"@doenet/doenetml-iframe": "0.7.24",
"@eslint/js": "^9.39.1",
"@types/object-hash": "^3.0.6",
"@types/react": "^19.2.7",
Expand Down
8 changes: 4 additions & 4 deletions test/cypress/component/ActivityViewer.windowed.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ function mkDoc(id: string, label: string): SingleDocSource {
type: "singleDoc",
isDescription: false,
doenetML: `<p>${label}: <textInput name="ti" /></p><p>typed: $ti.value</p>`,
// 0.7.21 is the first version the iframe wrapper gates parking on
// (PARK_MIN_VERSION), so parking works without a host-specified
// standaloneUrl — the bundle/CSS auto-resolve from this version.
version: "0.7.21",
// At or above PARK_MIN_VERSION (0.7.21) the iframe wrapper gates
// parking on the doc version, so parking works without a
// host-specified standaloneUrl — the bundle/CSS auto-resolve.
version: "0.7.24",
numVariants: 1,
};
}
Expand Down