@citolab/qti-components 6.7.1-61 → 6.7.1-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 +26 -130
- package/dist/index.js +26 -24
- package/dist/qti-components/index.d.ts +4 -1
- package/dist/qti-components/index.js +36 -34
- package/package.json +4 -4
|
@@ -1008,7 +1008,7 @@ declare global {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
}
|
|
1010
1010
|
|
|
1011
|
-
declare class QtiSimpleAssociableChoice extends
|
|
1011
|
+
declare class QtiSimpleAssociableChoice extends LitElement {
|
|
1012
1012
|
/** the minimal number of selections a candidate must make */
|
|
1013
1013
|
matchMin: number;
|
|
1014
1014
|
/** the maximum number of selections a candidate must make, the other options will be disabled when max options is checked */
|
|
@@ -1028,9 +1028,12 @@ declare class QtiMatchInteraction extends QtiMatchInteraction_base {
|
|
|
1028
1028
|
static styles: any[];
|
|
1029
1029
|
rows: QtiSimpleAssociableChoice[];
|
|
1030
1030
|
cols: QtiSimpleAssociableChoice[];
|
|
1031
|
+
lastCheckedRadio: HTMLInputElement | null;
|
|
1031
1032
|
response: any[];
|
|
1032
1033
|
responseIdentifier: string;
|
|
1033
1034
|
connectedCallback(): void;
|
|
1035
|
+
handleRadioClick: (e: any) => void;
|
|
1036
|
+
handleRadioChange: (e: any) => void;
|
|
1034
1037
|
render(): lit_html.TemplateResult<1>;
|
|
1035
1038
|
}
|
|
1036
1039
|
declare global {
|