@citolab/qti-components 6.0.29 → 6.0.31
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/{chunk-PNQIHQ4E.cjs → chunk-3S2ODAEN.cjs} +1 -7
- package/dist/{chunk-QFISTKXH.js → chunk-KT5PFIUE.js} +1 -7
- package/dist/custom-elements.json +475 -421
- package/dist/index.cjs +89 -103
- package/dist/index.css +1 -7
- package/dist/index.d.cts +9 -2
- package/dist/index.d.ts +9 -2
- package/dist/index.js +87 -101
- package/dist/qti-components/index.cjs +69 -77
- package/dist/qti-components/index.d.cts +9 -2
- package/dist/qti-components/index.d.ts +9 -2
- package/dist/qti-components/index.js +95 -103
- package/dist/qti-item/index.cjs +1 -1
- package/dist/qti-item/index.js +1 -1
- package/dist/qti-item-react/index.cjs +1 -1
- package/dist/qti-item-react/index.js +1 -1
- package/package.json +1 -1
|
@@ -93,10 +93,12 @@ declare class QtiFeedbackInline extends QtiFeedback {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
declare class QtiModalFeedback extends QtiFeedback {
|
|
96
|
-
|
|
96
|
+
static styles: lit.CSSResult;
|
|
97
|
+
render: () => lit_html.TemplateResult<1>;
|
|
97
98
|
}
|
|
98
99
|
|
|
99
100
|
declare class QtiFeedbackBlock extends QtiFeedback {
|
|
101
|
+
static styles: lit.CSSResult;
|
|
100
102
|
render(): lit_html.TemplateResult<1>;
|
|
101
103
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
102
104
|
}
|
|
@@ -268,6 +270,11 @@ declare class QtiVariable extends QtiExpression<string | string[]> {
|
|
|
268
270
|
calculate(): string | string[];
|
|
269
271
|
}
|
|
270
272
|
|
|
273
|
+
declare class QtiStringMatch extends QtiExpression<boolean> {
|
|
274
|
+
caseSensitive: string;
|
|
275
|
+
calculate(): boolean;
|
|
276
|
+
}
|
|
277
|
+
|
|
271
278
|
declare class QtiPortableCustomInteraction extends LitElement {
|
|
272
279
|
private responseIdentifier;
|
|
273
280
|
private module;
|
|
@@ -549,4 +556,4 @@ declare class QtiHotspotChoice extends QtiChoice {
|
|
|
549
556
|
declare class QtiInlineChoice extends LitElement {
|
|
550
557
|
}
|
|
551
558
|
|
|
552
|
-
export { BaseType, Cardinality, Events, QtPrintedVariable, QtiAnd, QtiAssessmentItem, QtiAssociableHotspot, QtiAssociateInteraction, QtiBaseValue, QtiChoice, QtiCompanionMaterialsInfo, QtiConditionExpression, QtiContains, QtiCorrect, QtiEndAttemptInteraction, QtiEqual, QtiEqualRounded, QtiExpression, QtiFeedbackBlock, QtiFeedbackInline, QtiGap, QtiGapImg, QtiGapMatchInteraction, QtiGapText, QtiGraphicAssociateInteraction, QtiGraphicGapMatchInteraction, QtiGraphicOrderInteraction, QtiGt, QtiGte, QtiHotspotChoice, QtiHotspotInteraction, QtiHottextInteraction, QtiInlineChoice, QtiInlineChoiceInteraction, QtiIsNull, QtiLt, QtiLte, QtiMapResponse, QtiMatch, QtiMatchInteraction, QtiMediaInteraction, QtiMember, QtiModalFeedback, QtiMultiple, QtiNot, QtiOr, QtiOrderInteraction, QtiOrdered, QtiOutcomeDeclaration, QtiPortableCustomInteraction, QtiPositionObjectStage, QtiProduct, QtiPrompt, QtiResponseCondition, QtiResponseDeclaration, QtiResponseElse, QtiResponseElseIf, QtiResponseIf, QtiRule, QtiSPositionObjectInteraction, QtiSelectPointInteraction, QtiSetOutcomeValue, QtiSimpleAssociableChoice, QtiSliderInteraction, QtiStylesheet, QtiVariable, ResponseVariable, VariableDeclaration, qtiContentBody, qtiRubricBlock };
|
|
559
|
+
export { BaseType, Cardinality, Events, QtPrintedVariable, QtiAnd, QtiAssessmentItem, QtiAssociableHotspot, QtiAssociateInteraction, QtiBaseValue, QtiChoice, QtiCompanionMaterialsInfo, QtiConditionExpression, QtiContains, QtiCorrect, QtiEndAttemptInteraction, QtiEqual, QtiEqualRounded, QtiExpression, QtiFeedbackBlock, QtiFeedbackInline, QtiGap, QtiGapImg, QtiGapMatchInteraction, QtiGapText, QtiGraphicAssociateInteraction, QtiGraphicGapMatchInteraction, QtiGraphicOrderInteraction, QtiGt, QtiGte, QtiHotspotChoice, QtiHotspotInteraction, QtiHottextInteraction, QtiInlineChoice, QtiInlineChoiceInteraction, QtiIsNull, QtiLt, QtiLte, QtiMapResponse, QtiMatch, QtiMatchInteraction, QtiMediaInteraction, QtiMember, QtiModalFeedback, QtiMultiple, QtiNot, QtiOr, QtiOrderInteraction, QtiOrdered, QtiOutcomeDeclaration, QtiPortableCustomInteraction, QtiPositionObjectStage, QtiProduct, QtiPrompt, QtiResponseCondition, QtiResponseDeclaration, QtiResponseElse, QtiResponseElseIf, QtiResponseIf, QtiRule, QtiSPositionObjectInteraction, QtiSelectPointInteraction, QtiSetOutcomeValue, QtiSimpleAssociableChoice, QtiSliderInteraction, QtiStringMatch, QtiStylesheet, QtiVariable, ResponseVariable, VariableDeclaration, qtiContentBody, qtiRubricBlock };
|
|
@@ -93,10 +93,12 @@ declare class QtiFeedbackInline extends QtiFeedback {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
declare class QtiModalFeedback extends QtiFeedback {
|
|
96
|
-
|
|
96
|
+
static styles: lit.CSSResult;
|
|
97
|
+
render: () => lit_html.TemplateResult<1>;
|
|
97
98
|
}
|
|
98
99
|
|
|
99
100
|
declare class QtiFeedbackBlock extends QtiFeedback {
|
|
101
|
+
static styles: lit.CSSResult;
|
|
100
102
|
render(): lit_html.TemplateResult<1>;
|
|
101
103
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
102
104
|
}
|
|
@@ -268,6 +270,11 @@ declare class QtiVariable extends QtiExpression<string | string[]> {
|
|
|
268
270
|
calculate(): string | string[];
|
|
269
271
|
}
|
|
270
272
|
|
|
273
|
+
declare class QtiStringMatch extends QtiExpression<boolean> {
|
|
274
|
+
caseSensitive: string;
|
|
275
|
+
calculate(): boolean;
|
|
276
|
+
}
|
|
277
|
+
|
|
271
278
|
declare class QtiPortableCustomInteraction extends LitElement {
|
|
272
279
|
private responseIdentifier;
|
|
273
280
|
private module;
|
|
@@ -549,4 +556,4 @@ declare class QtiHotspotChoice extends QtiChoice {
|
|
|
549
556
|
declare class QtiInlineChoice extends LitElement {
|
|
550
557
|
}
|
|
551
558
|
|
|
552
|
-
export { BaseType, Cardinality, Events, QtPrintedVariable, QtiAnd, QtiAssessmentItem, QtiAssociableHotspot, QtiAssociateInteraction, QtiBaseValue, QtiChoice, QtiCompanionMaterialsInfo, QtiConditionExpression, QtiContains, QtiCorrect, QtiEndAttemptInteraction, QtiEqual, QtiEqualRounded, QtiExpression, QtiFeedbackBlock, QtiFeedbackInline, QtiGap, QtiGapImg, QtiGapMatchInteraction, QtiGapText, QtiGraphicAssociateInteraction, QtiGraphicGapMatchInteraction, QtiGraphicOrderInteraction, QtiGt, QtiGte, QtiHotspotChoice, QtiHotspotInteraction, QtiHottextInteraction, QtiInlineChoice, QtiInlineChoiceInteraction, QtiIsNull, QtiLt, QtiLte, QtiMapResponse, QtiMatch, QtiMatchInteraction, QtiMediaInteraction, QtiMember, QtiModalFeedback, QtiMultiple, QtiNot, QtiOr, QtiOrderInteraction, QtiOrdered, QtiOutcomeDeclaration, QtiPortableCustomInteraction, QtiPositionObjectStage, QtiProduct, QtiPrompt, QtiResponseCondition, QtiResponseDeclaration, QtiResponseElse, QtiResponseElseIf, QtiResponseIf, QtiRule, QtiSPositionObjectInteraction, QtiSelectPointInteraction, QtiSetOutcomeValue, QtiSimpleAssociableChoice, QtiSliderInteraction, QtiStylesheet, QtiVariable, ResponseVariable, VariableDeclaration, qtiContentBody, qtiRubricBlock };
|
|
559
|
+
export { BaseType, Cardinality, Events, QtPrintedVariable, QtiAnd, QtiAssessmentItem, QtiAssociableHotspot, QtiAssociateInteraction, QtiBaseValue, QtiChoice, QtiCompanionMaterialsInfo, QtiConditionExpression, QtiContains, QtiCorrect, QtiEndAttemptInteraction, QtiEqual, QtiEqualRounded, QtiExpression, QtiFeedbackBlock, QtiFeedbackInline, QtiGap, QtiGapImg, QtiGapMatchInteraction, QtiGapText, QtiGraphicAssociateInteraction, QtiGraphicGapMatchInteraction, QtiGraphicOrderInteraction, QtiGt, QtiGte, QtiHotspotChoice, QtiHotspotInteraction, QtiHottextInteraction, QtiInlineChoice, QtiInlineChoiceInteraction, QtiIsNull, QtiLt, QtiLte, QtiMapResponse, QtiMatch, QtiMatchInteraction, QtiMediaInteraction, QtiMember, QtiModalFeedback, QtiMultiple, QtiNot, QtiOr, QtiOrderInteraction, QtiOrdered, QtiOutcomeDeclaration, QtiPortableCustomInteraction, QtiPositionObjectStage, QtiProduct, QtiPrompt, QtiResponseCondition, QtiResponseDeclaration, QtiResponseElse, QtiResponseElseIf, QtiResponseIf, QtiRule, QtiSPositionObjectInteraction, QtiSelectPointInteraction, QtiSetOutcomeValue, QtiSimpleAssociableChoice, QtiSliderInteraction, QtiStringMatch, QtiStylesheet, QtiVariable, ResponseVariable, VariableDeclaration, qtiContentBody, qtiRubricBlock };
|