Skip to content

Commit 48fc427

Browse files
authored
docs(changeset): Update accessibility status for Perseus Widgets previously inaccessible (#2620)
## Summary: Updated the accessibility field for the following Perseus widgets to align with our [Widget Fundamentals](https://khanacademy.atlassian.net/wiki/spaces/LC/pages/1909489691/Widget+Fundamentals) documentation: - Graded Group - Graded Group Set - Python Program - Video Issue: LEMS-3196 ## Test plan: Author: tatianasnook Reviewers: jeremywiebe, catandthemachines Required Reviewers: Approved By: jeremywiebe, catandthemachines Checks: ✅ 8 checks were successful Pull Request URL: #2620
1 parent 821d241 commit 48fc427

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.changeset/young-pandas-build.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@khanacademy/perseus-core": patch
3+
---
4+
5+
Update accessibility status for Perseus Widgets previously inaccessible

packages/perseus-core/src/widgets/graded-group-set/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const traverseChildWidgets = function (props: any, traverseRenderer: any): any {
1717
const gradedGroupSetWidgetLogic: WidgetLogic = {
1818
name: "graded-group-set",
1919
defaultWidgetOptions,
20-
accessible: false,
20+
accessible: true,
2121
traverseChildWidgets: traverseChildWidgets,
2222
};
2323

packages/perseus-core/src/widgets/graded-group/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const traverseChildWidgets = function (props: any, traverseRenderer: any): any {
2121
const gradedGroupWidgetLogic: WidgetLogic = {
2222
name: "graded-group",
2323
defaultWidgetOptions,
24-
accessible: false,
24+
accessible: true,
2525
traverseChildWidgets: traverseChildWidgets,
2626
};
2727

packages/perseus-core/src/widgets/python-program/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const defaultWidgetOptions: PythonProgramDefaultWidgetOptions = {
1414
const pythonProgramWidgetLogic: WidgetLogic = {
1515
name: "python-program",
1616
defaultWidgetOptions,
17-
accessible: false,
17+
accessible: true,
1818
};
1919

2020
export default pythonProgramWidgetLogic;

packages/perseus-core/src/widgets/video/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const videoWidgetLogic: WidgetLogic = {
1515
defaultWidgetOptions,
1616
supportedAlignments: ["block", "float-left", "float-right", "full-width"],
1717
defaultAlignment: "block",
18-
accessible: false,
18+
accessible: true,
1919
};
2020

2121
export default videoWidgetLogic;

0 commit comments

Comments
 (0)