@citolab/qti-components 6.9.1-6 → 6.9.1-8
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 +138 -138
- package/dist/index.js +43 -43
- package/dist/qti-components/index.d.ts +4 -0
- package/dist/qti-components/index.js +82 -82
- package/package.json +1 -1
|
@@ -1088,10 +1088,14 @@ declare class QtiOrderInteraction extends QtiOrderInteraction_base {
|
|
|
1088
1088
|
private _classNames;
|
|
1089
1089
|
private _orientation;
|
|
1090
1090
|
static layoutClass: string[];
|
|
1091
|
+
nrChoices: number;
|
|
1092
|
+
correctResponses: string[];
|
|
1093
|
+
showCorrectResponses: boolean;
|
|
1091
1094
|
/** orientation of choices */
|
|
1092
1095
|
orientation: 'horizontal' | 'vertical';
|
|
1093
1096
|
static styles: lit.CSSResult[];
|
|
1094
1097
|
render(): lit_html.TemplateResult<1>;
|
|
1098
|
+
set correctResponse(value: Readonly<string | string[]>);
|
|
1095
1099
|
connectedCallback(): void;
|
|
1096
1100
|
}
|
|
1097
1101
|
declare global {
|