@khanacademy/perseus-core 26.0.0 → 26.0.1
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/data-schema.d.ts +12 -1
- package/dist/es/index.item-splitting.js.map +1 -1
- package/dist/es/index.js +3 -3
- package/dist/es/index.js.map +1 -1
- package/dist/feature-flags.d.ts +1 -1
- package/dist/index.item-splitting.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/utils/generators/interactive-graph-widget-generator.d.ts +1 -0
- package/package.json +1 -1
package/dist/data-schema.d.ts
CHANGED
|
@@ -311,8 +311,19 @@ export type WidgetOptions<Type extends string, Options extends Record<string, an
|
|
|
311
311
|
*/
|
|
312
312
|
static?: boolean;
|
|
313
313
|
/**
|
|
314
|
-
* Whether a widget is scored.
|
|
314
|
+
* Whether a widget is scored.
|
|
315
315
|
* Default: true
|
|
316
|
+
*
|
|
317
|
+
* The behavior depends on how the widget decides to implement it.
|
|
318
|
+
* For example, Interactive Graph will render an ungraded graph
|
|
319
|
+
* that is still interactive that learners can use to visualize
|
|
320
|
+
* math.
|
|
321
|
+
*
|
|
322
|
+
* Historical uses seem questionable (See LEMS-3958):
|
|
323
|
+
* - IFrame
|
|
324
|
+
* - Explanation
|
|
325
|
+
* - Image
|
|
326
|
+
* - Transformer (deprecated)
|
|
316
327
|
*/
|
|
317
328
|
graded?: boolean;
|
|
318
329
|
/**
|