@citolab/qti-components 6.9.1-beta.61 → 6.9.1-beta.62
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/custom-elements.json +155 -155
- package/dist/index.global.js +1 -1
- package/dist/index.js +1 -1
- package/dist/qti-components/index.d.ts +4 -4
- package/dist/qti-components/index.js +74 -74
- package/dist/qti-item/index.d.ts +1 -1
- package/dist/qti-loader/index.d.ts +1 -1
- package/dist/{qti-simple-choice-CFhbe77e.d.ts → qti-simple-choice-C_jJ4Bnp.d.ts} +2 -1
- package/package.json +1 -1
package/dist/qti-item/index.d.ts
CHANGED
|
@@ -367,6 +367,7 @@ declare abstract class QtiFeedback extends LitElement {
|
|
|
367
367
|
outcomeIdentifier: string;
|
|
368
368
|
protected identifier: string;
|
|
369
369
|
showStatus: string;
|
|
370
|
+
private _context?;
|
|
370
371
|
connectedCallback(): void;
|
|
371
372
|
checkShowFeedback(outcomeIdentifier: string): void;
|
|
372
373
|
private showFeedback;
|
|
@@ -580,7 +581,7 @@ declare abstract class QtiExpression<T> extends LitElement implements QtiExpress
|
|
|
580
581
|
render(): lit_html.TemplateResult<1>;
|
|
581
582
|
calculate(): Readonly<T>;
|
|
582
583
|
protected getResult(): Readonly<T>;
|
|
583
|
-
|
|
584
|
+
protected context?: ItemContext;
|
|
584
585
|
getVariables: () => VariableDeclaration<number | string | (number | string)[] | null>[];
|
|
585
586
|
}
|
|
586
587
|
|