Skip to content
Open
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
9 changes: 0 additions & 9 deletions .changeset/diagnostics-summary-callback.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/list-item-first-child-alignment.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/vscode-extension-mathjax-csp.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/doenetml-iframe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @doenet/doenetml

## 0.7.17

### Patch Changes

- 9650a0f: Replace `isAccessibleCallback` with `diagnosticsSummaryCallback` in `DoenetEditor`. The new callback receives an object with counts for `warningsCount`, `errorsCount`, `infosCount`, `accessibilityLevel1Count`, and `accessibilityLevel2Count` instead of a single boolean. The callback is only invoked after diagnostics have been received from the viewer.
- feae758: Improve list-item first-child alignment for section/task/problem-style numbering when content starts with block renderers.

This update standardizes list-item alignment signals across block components, updates section and sideBySide rendering to top-align numbering with block-first content, and adds Cypress coverage for the new behavior (including answer and choiceInput cases).

## 0.7.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/doenetml-iframe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@doenet/doenetml-iframe",
"type": "module",
"description": "A renderer for DoenetML contained in an iframe",
"version": "0.7.16",
"version": "0.7.17",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Doenet/DoenetML#readme",
"private": true,
Expand Down
9 changes: 9 additions & 0 deletions packages/doenetml/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @doenet/doenetml

## 0.7.17

### Patch Changes

- 9650a0f: Replace `isAccessibleCallback` with `diagnosticsSummaryCallback` in `DoenetEditor`. The new callback receives an object with counts for `warningsCount`, `errorsCount`, `infosCount`, `accessibilityLevel1Count`, and `accessibilityLevel2Count` instead of a single boolean. The callback is only invoked after diagnostics have been received from the viewer.
- feae758: Improve list-item first-child alignment for section/task/problem-style numbering when content starts with block renderers.

This update standardizes list-item alignment signals across block components, updates section and sideBySide rendering to top-align numbering with block-first content, and adds Cypress coverage for the new behavior (including answer and choiceInput cases).

## 0.7.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/doenetml/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@doenet/doenetml",
"type": "module",
"description": "Semantic markup for building interactive web activities",
"version": "0.7.16",
"version": "0.7.17",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Doenet/DoenetML#readme",
"private": true,
Expand Down
9 changes: 9 additions & 0 deletions packages/standalone/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @doenet/doenetml

## 0.7.17

### Patch Changes

- 9650a0f: Replace `isAccessibleCallback` with `diagnosticsSummaryCallback` in `DoenetEditor`. The new callback receives an object with counts for `warningsCount`, `errorsCount`, `infosCount`, `accessibilityLevel1Count`, and `accessibilityLevel2Count` instead of a single boolean. The callback is only invoked after diagnostics have been received from the viewer.
- feae758: Improve list-item first-child alignment for section/task/problem-style numbering when content starts with block renderers.

This update standardizes list-item alignment signals across block components, updates section and sideBySide rendering to top-align numbering with block-first content, and adds Cypress coverage for the new behavior (including answer and choiceInput cases).

## 0.7.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/standalone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@doenet/standalone",
"type": "module",
"description": "Standalone renderer for DoenetML suitable for being included in a web page",
"version": "0.7.16",
"version": "0.7.17",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Doenet/DoenetML#readme",
"private": true,
Expand Down
2 changes: 2 additions & 0 deletions packages/v06-to-v07/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @doenet/v06-to-v07

## 0.7.17

## 0.7.16

## 0.7.15
Expand Down
2 changes: 1 addition & 1 deletion packages/v06-to-v07/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@doenet/v06-to-v07",
"type": "module",
"description": "Convert DoenetML v0.6 syntax to v0.7 syntax",
"version": "0.7.16",
"version": "0.7.17",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Doenet/DoenetML#readme",
"private": true,
Expand Down
11 changes: 11 additions & 0 deletions packages/vscode-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# @doenet/vscode-extension

## 0.7.17

### Patch Changes

- 9650a0f: Replace `isAccessibleCallback` with `diagnosticsSummaryCallback` in `DoenetEditor`. The new callback receives an object with counts for `warningsCount`, `errorsCount`, `infosCount`, `accessibilityLevel1Count`, and `accessibilityLevel2Count` instead of a single boolean. The callback is only invoked after diagnostics have been received from the viewer.
- feae758: Improve list-item first-child alignment for section/task/problem-style numbering when content starts with block renderers.

This update standardizes list-item alignment signals across block components, updates section and sideBySide rendering to top-align numbering with block-first content, and adds Cypress coverage for the new behavior (including answer and choiceInput cases).

- baffc11: Fix Content Security Policy in VS Code extension preview to allow MathJax to render math. Previously, math was displayed as raw LaTeX instead of typeset equations.

## 0.7.16
11 changes: 11 additions & 0 deletions packages/vscode-extension/extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## v0.7.10

## 0.7.17

### Patch Changes

- 9650a0f: Replace `isAccessibleCallback` with `diagnosticsSummaryCallback` in `DoenetEditor`. The new callback receives an object with counts for `warningsCount`, `errorsCount`, `infosCount`, `accessibilityLevel1Count`, and `accessibilityLevel2Count` instead of a single boolean. The callback is only invoked after diagnostics have been received from the viewer.
- feae758: Improve list-item first-child alignment for section/task/problem-style numbering when content starts with block renderers.

This update standardizes list-item alignment signals across block components, updates section and sideBySide rendering to top-align numbering with block-first content, and adds Cypress coverage for the new behavior (including answer and choiceInput cases).

- baffc11: Fix Content Security Policy in VS Code extension preview to allow MathJax to render math. Previously, math was displayed as raw LaTeX instead of typeset equations.

## 0.7.16

- Update doenetml version
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Jason Siefken",
"license": "AGPL",
"publisher": "doenet",
"version": "0.7.16",
"version": "0.7.17",
"repository": {
"type": "git",
"url": "https://github.com/Doenet/DoenetML"
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A language server for DoenetML",
"author": "Jason Siefken",
"license": "AGPL",
"version": "0.7.16",
"version": "0.7.17",
"repository": {
"type": "git",
"url": "https://github.com/Doenet/DoenetML"
Expand Down