@citolab/qti-components 6.9.1-beta.47 → 6.9.1-beta.49
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 +170 -159
- package/dist/index.global.js +1 -1
- package/dist/index.js +1 -1
- package/dist/item.css +37 -0
- package/dist/qti-components/index.d.ts +2 -2
- package/dist/qti-components/index.js +150 -77
- package/dist/qti-item/index.d.ts +1 -1
- package/dist/{qti-simple-choice-DdIqHDOp.d.ts → qti-simple-choice-Bil0gmT4.d.ts} +3 -5
- package/package.json +1 -1
package/dist/qti-item/index.d.ts
CHANGED
|
@@ -409,7 +409,7 @@ declare abstract class Interaction extends LitElement {
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
declare class QtiExtendedTextInteraction extends Interaction {
|
|
412
|
-
|
|
412
|
+
private _rows;
|
|
413
413
|
/** expected length is mapped to the property maxlength on the textarea */
|
|
414
414
|
expectedLength: number;
|
|
415
415
|
patternMask: string;
|
|
@@ -417,7 +417,7 @@ declare class QtiExtendedTextInteraction extends Interaction {
|
|
|
417
417
|
placeholderText: string;
|
|
418
418
|
private _value;
|
|
419
419
|
classNames: any;
|
|
420
|
-
handleclassNamesChange(old: any,
|
|
420
|
+
handleclassNamesChange(old: any, classes: string): void;
|
|
421
421
|
set response(value: string);
|
|
422
422
|
validate(): boolean;
|
|
423
423
|
static get styles(): lit.CSSResult[];
|
|
@@ -433,16 +433,14 @@ declare global {
|
|
|
433
433
|
}
|
|
434
434
|
|
|
435
435
|
declare class QtiTextEntryInteraction extends Interaction {
|
|
436
|
+
static styles: CSSResultGroup;
|
|
436
437
|
expectedLength: number;
|
|
437
438
|
patternMask: string;
|
|
438
439
|
placeholderText: string;
|
|
439
440
|
private _value;
|
|
440
441
|
private _correctValue;
|
|
441
442
|
private _size;
|
|
442
|
-
static styles: CSSResultGroup;
|
|
443
443
|
inputRef: lit_html_directives_ref_js.Ref<HTMLInputElement>;
|
|
444
|
-
classNames: any;
|
|
445
|
-
handleclassNamesChange(old: any, classes: string): void;
|
|
446
444
|
set response(value: string | undefined);
|
|
447
445
|
validate(): boolean;
|
|
448
446
|
set correctResponse(value: string);
|