@khanacademy/perseus-core 23.6.1 → 24.0.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/dist/accessibility.d.ts +0 -2
- package/dist/data-schema.d.ts +774 -19
- package/dist/es/index.item-splitting.js +1 -1
- package/dist/es/index.item-splitting.js.map +1 -1
- package/dist/es/index.js +7 -5
- package/dist/es/index.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.item-splitting.js +1 -1
- package/dist/index.item-splitting.js.map +1 -1
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/parse-perseus-json/perseus-parsers/interactive-graph-user-input.d.ts +16 -0
- package/dist/parse-perseus-json/perseus-parsers/interactive-graph-widget.d.ts +48 -0
- package/dist/utils/generators/interactive-graph-widget-generator.d.ts +2 -1
- package/dist/utils/remove-orphaned-widgets.d.ts +13 -0
- package/dist/validation.types.d.ts +358 -2
- package/package.json +1 -1
package/dist/accessibility.d.ts
CHANGED
|
@@ -15,8 +15,6 @@ import type { PerseusItem } from "./data-schema";
|
|
|
15
15
|
* accessibility requirements which is not very accurate given that some
|
|
16
16
|
* instances _could_ be accessible and some not based on their widget options.
|
|
17
17
|
* In most cases, you should use {@link isItemAccessible} instead.
|
|
18
|
-
*
|
|
19
|
-
* @todo Inline this into {@link isItemAccessible}!
|
|
20
18
|
*/
|
|
21
19
|
export declare function violatingWidgets(itemData: PerseusItem): Array<string>;
|
|
22
20
|
/**
|