@khanacademy/perseus-core 0.0.0-PR3150-20251218141019 → 0.0.0-PR3150-20251218142339
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
CHANGED
|
@@ -246,6 +246,14 @@ export type Hint = PerseusRenderer & {
|
|
|
246
246
|
* is displayed. This allows for hints that build upon each other.
|
|
247
247
|
*/
|
|
248
248
|
replace?: boolean;
|
|
249
|
+
/**
|
|
250
|
+
* The UI needs to know how many hints there are before we have
|
|
251
|
+
* answerful PerseusItems. In a crunch, we decided to replace existing hints
|
|
252
|
+
* with empty hints and add a placeholder flag to signal that they're
|
|
253
|
+
* not real hints.
|
|
254
|
+
*
|
|
255
|
+
* TODO(LEMS-3806): there's probably a better way to do this
|
|
256
|
+
*/
|
|
249
257
|
placeholder?: boolean;
|
|
250
258
|
};
|
|
251
259
|
export type PerseusImageDetail = {
|