@citolab/qti-components 7.16.0 → 7.17.0

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.
Files changed (64) hide show
  1. package/dist/base.d.ts +48 -8
  2. package/dist/base.js +49 -2
  3. package/dist/base.js.map +1 -1
  4. package/dist/chunk-2DOYPVF5.js +481 -0
  5. package/dist/chunk-2DOYPVF5.js.map +1 -0
  6. package/dist/chunk-2ZEJ3RR5.js +89 -0
  7. package/dist/chunk-2ZEJ3RR5.js.map +1 -0
  8. package/dist/chunk-352OTVTY.js +3330 -0
  9. package/dist/chunk-352OTVTY.js.map +1 -0
  10. package/dist/chunk-C2HQFI2C.js +5927 -0
  11. package/dist/chunk-C2HQFI2C.js.map +1 -0
  12. package/dist/chunk-DWIRLYDS.js +20 -0
  13. package/dist/chunk-DWIRLYDS.js.map +1 -0
  14. package/dist/chunk-EUXUH3YW.js +15 -0
  15. package/dist/chunk-EUXUH3YW.js.map +1 -0
  16. package/dist/chunk-F44CI35W.js +145 -0
  17. package/dist/chunk-F44CI35W.js.map +1 -0
  18. package/dist/chunk-INKI27D5.js +493 -0
  19. package/dist/chunk-INKI27D5.js.map +1 -0
  20. package/dist/chunk-JEUY3MYB.js +2010 -0
  21. package/dist/chunk-JEUY3MYB.js.map +1 -0
  22. package/dist/chunk-O4XIWHTF.js +1139 -0
  23. package/dist/chunk-O4XIWHTF.js.map +1 -0
  24. package/dist/chunk-RI47B4ZT.js +1753 -0
  25. package/dist/chunk-RI47B4ZT.js.map +1 -0
  26. package/dist/chunk-VEV4DGPH.js +31 -0
  27. package/dist/chunk-VEV4DGPH.js.map +1 -0
  28. package/dist/chunk-W4SQRNWO.js +3844 -0
  29. package/dist/chunk-W4SQRNWO.js.map +1 -0
  30. package/dist/computed-item.context-CiddHLPz.d.ts +22 -0
  31. package/dist/computed.context-CH09_LCR.d.ts +45 -0
  32. package/dist/config.context-DAdkDDf5.d.ts +14 -0
  33. package/dist/elements.d.ts +318 -1
  34. package/dist/elements.js +41 -2
  35. package/dist/elements.js.map +1 -1
  36. package/dist/index.d.ts +21 -8
  37. package/dist/index.js +327 -9
  38. package/dist/index.js.map +1 -1
  39. package/dist/interaction-C5Up6-68.d.ts +56 -0
  40. package/dist/interactions.d.ts +913 -1
  41. package/dist/interactions.js +71 -2
  42. package/dist/interactions.js.map +1 -1
  43. package/dist/item.context-BRKXBC3m.d.ts +10 -0
  44. package/dist/item.d.ts +147 -1
  45. package/dist/item.js +22 -2
  46. package/dist/item.js.map +1 -1
  47. package/dist/loader.d.ts +21 -1
  48. package/dist/loader.js +10 -2
  49. package/dist/loader.js.map +1 -1
  50. package/dist/processing.d.ts +393 -1
  51. package/dist/processing.js +102 -2
  52. package/dist/processing.js.map +1 -1
  53. package/dist/qti-feedback-B4cMzOcq.d.ts +21 -0
  54. package/dist/qti-rule-base-dL4opfvi.d.ts +39 -0
  55. package/dist/qti-transform-test-Bz9A3hmD.d.ts +63 -0
  56. package/dist/test.context-Bpw1HNAZ.d.ts +28 -0
  57. package/dist/test.d.ts +569 -1
  58. package/dist/test.js +60 -2
  59. package/dist/test.js.map +1 -1
  60. package/dist/transformers.d.ts +18 -1
  61. package/dist/transformers.js +11 -2
  62. package/dist/transformers.js.map +1 -1
  63. package/dist/variables-CusMRnyJ.d.ts +69 -0
  64. package/package.json +8 -14
@@ -1 +1,318 @@
1
- export * from '@qti-components/elements';
1
+ import * as lit from 'lit';
2
+ import { LitElement, CSSResultGroup, PropertyValueMap } from 'lit';
3
+ import { V as VariableValue, R as ResponseInteraction, k as ResponseVariable, j as OutcomeVariable, h as VariableDeclaration, C as Calculate, B as BaseType, a as Cardinality } from './variables-CusMRnyJ.js';
4
+ import { a as QtiFeedback, Q as QtiVariableDeclaration } from './qti-feedback-B4cMzOcq.js';
5
+ import { I as ItemContext } from './item.context-BRKXBC3m.js';
6
+
7
+ /**
8
+ * @summary The qti-assessment-item element contains all the other QTI 3 item structures.
9
+ * @documentation https://www.imsglobal.org/spec/qti/v3p0/impl#h.dltnnj87l0yj
10
+ *
11
+ * @dependency qti-feedback
12
+ * @dependency qti-responseprocessing
13
+ *
14
+ * @event qti-item-context-updated - Emitted when through a user action the itemContext is updated,
15
+ * typically on interaction with the interactions, or calling response processing.
16
+ */
17
+ declare class QtiAssessmentItem extends LitElement {
18
+ private _itemTitle;
19
+ private _templateProcessing;
20
+ identifier: string;
21
+ adaptive: 'true' | 'false';
22
+ timeDependent: 'true' | 'false' | null;
23
+ get title(): string;
24
+ set title(value: string);
25
+ disabled: boolean;
26
+ protected _handleDisabledChange: (_: boolean, disabled: boolean) => void;
27
+ readonly: boolean;
28
+ protected _handleReadonlyChange: (_: boolean, readonly: boolean) => void;
29
+ private _context;
30
+ /**
31
+ * Sets the identifier for the assessment item reference if this item is in a test.
32
+ *
33
+ * @param identifier - The identifier for the assessment item reference.
34
+ */
35
+ set assessmentItemRefId(identifier: string);
36
+ get assessmentItemRefId(): string;
37
+ get variables(): VariableValue<string | string[] | null>[];
38
+ set variables(value: VariableValue<string | string[] | null>[]);
39
+ private _initialContext;
40
+ private _feedbackElements;
41
+ private _interactionElements;
42
+ /** @deprecated use variables property instead */
43
+ set responses(myResponses: ResponseInteraction[]);
44
+ render(): lit.TemplateResult<1>;
45
+ connectedCallback(): void;
46
+ disconnectedCallback(): void;
47
+ private _attachEventListeners;
48
+ private _removeEventListeners;
49
+ private _handleRegisterVariable;
50
+ private _handleRegisterFeedback;
51
+ private _handleRegisterInteraction;
52
+ private _handleEndAttempt;
53
+ private _handleSetOutcomeValue;
54
+ private _handleUpdateResponseVariable;
55
+ /**
56
+ * Toggles the display of correct responses for all interactions.
57
+ * @param show - A boolean indicating whether to show or hide correct responses.
58
+ */
59
+ showCorrectResponse(show: boolean): void;
60
+ /**
61
+ * Toggles the display of the candidate correction for all interactions.
62
+ * @param show - A boolean indicating whether to show or hide candidate correction.
63
+ */
64
+ showCandidateCorrection(show: boolean): void;
65
+ private _processTemplates;
66
+ processResponse(countNumAttempts?: boolean, reportValidityAfterScoring?: boolean): boolean;
67
+ resetResponses(): void;
68
+ protected getResponse(identifier: string): Readonly<ResponseVariable>;
69
+ getOutcome(identifier: string): Readonly<OutcomeVariable>;
70
+ protected getVariable(identifier: string): Readonly<VariableDeclaration<string | string[] | null>>;
71
+ /**
72
+ * Updates the response variable with the specified identifier to the given value.
73
+ *
74
+ * @protected
75
+ *
76
+ * This method is intended for internal use within the class and subclasses.
77
+ * It should not be called externally by third parties.
78
+ *
79
+ * @param identifier - The identifier of the response variable to update.
80
+ * @param value - The new value for the response variable.
81
+ */
82
+ updateResponseVariable(identifier: string, value: string | string[] | undefined): void;
83
+ setOutcomeVariable(identifier: string, value: string | string[] | undefined): void;
84
+ /**
85
+ * Updates the outcome variable with the specified identifier to the given value.
86
+ *
87
+ * @protected
88
+ *
89
+ * This method is intended for internal use within the class and subclasses.
90
+ * It should not be called externally by third parties.
91
+ *
92
+ * @param identifier - The identifier of the response variable to update.
93
+ * @param value - The new value for the response variable.
94
+ */
95
+ updateOutcomeVariable(identifier: string, value: string | string[] | undefined): void;
96
+ validate(reportValidity?: boolean): boolean;
97
+ reportValidity(): void;
98
+ private _getCompletionStatus;
99
+ }
100
+ declare global {
101
+ interface HTMLElementTagNameMap {
102
+ 'qti-assessment-item': QtiAssessmentItem;
103
+ }
104
+ }
105
+
106
+ declare class QtiAssessmentStimulusRefConnectedEvent extends Event {
107
+ element: QtiAssessmentStimulusRef;
108
+ item: QtiAssessmentItem;
109
+ static eventName: string;
110
+ constructor(element: QtiAssessmentStimulusRef, item: QtiAssessmentItem);
111
+ }
112
+ /**
113
+ * Represents a custom element for referencing an assessment stimulus.
114
+ */
115
+ declare class QtiAssessmentStimulusRef extends LitElement {
116
+ identifier: string;
117
+ href: string;
118
+ /**
119
+ * Lifecycle method called when the element is connected to the DOM.
120
+ * First checks if there's a data-stimulus-idref element. If found, loads the stimulus directly.
121
+ * If not found, delegates to the delivery platform via an event.
122
+ */
123
+ connectedCallback(): Promise<void>;
124
+ /**
125
+ * Loads and appends the stimulus to the specified element.
126
+ * @param stimulusRef - The element to which the stimulus will be appended.
127
+ */
128
+ updateStimulusRef(stimulusRef: Element): Promise<void>;
129
+ }
130
+ declare global {
131
+ interface HTMLElementTagNameMap {
132
+ 'qti-assessment-stimulus-ref': QtiAssessmentStimulusRef;
133
+ }
134
+ }
135
+
136
+ declare class QtiCompanionMaterialsInfo extends LitElement {
137
+ }
138
+ declare global {
139
+ interface HTMLElementTagNameMap {
140
+ 'qti-companion-materials-info': QtiCompanionMaterialsInfo;
141
+ }
142
+ }
143
+
144
+ /**
145
+ * https://www.imsglobal.org/spec/qti/v3p0/impl#h.fi29q8dubjgw
146
+ * <qti-custom-operator class="js.org">
147
+ <qti-base-value base-type="string"><![CDATA[
148
+ console.log(context.variables);
149
+ return 'B'
150
+ document.querySelector('qti-end-attempt-interaction').disabled = true;
151
+ ]]></qti-base-value>
152
+ </qti-custom-operator>
153
+ </qti-set-outcome-value>
154
+ */
155
+ declare class QtiCustomOperator extends LitElement implements Calculate {
156
+ private operatorFunction;
157
+ private _context?;
158
+ render(): lit.TemplateResult<1>;
159
+ handleSlotChange(): void;
160
+ calculate(): any;
161
+ }
162
+ declare global {
163
+ interface HTMLElementTagNameMap {
164
+ 'qti-custom-operator': QtiCustomOperator;
165
+ }
166
+ }
167
+
168
+ declare class QtiFeedbackBlock extends QtiFeedback {
169
+ static styles: lit.CSSResult;
170
+ render(): lit.TemplateResult<1>;
171
+ connectedCallback(): void;
172
+ }
173
+ declare global {
174
+ interface HTMLElementTagNameMap {
175
+ 'qti-feedback-block': QtiFeedbackBlock;
176
+ }
177
+ }
178
+
179
+ declare class QtiFeedbackInline extends QtiFeedback {
180
+ static styles: lit.CSSResult;
181
+ render: () => lit.TemplateResult<1>;
182
+ connectedCallback(): void;
183
+ }
184
+ declare global {
185
+ interface HTMLElementTagNameMap {
186
+ 'qti-feedback-inline': QtiFeedbackInline;
187
+ }
188
+ }
189
+
190
+ declare class QtiModalFeedback extends QtiFeedback {
191
+ static styles: lit.CSSResult;
192
+ render(): lit.TemplateResult<1>;
193
+ openFeedback(): void;
194
+ closeFeedback(): void;
195
+ connectedCallback(): void;
196
+ protected updated(changedProperties: Map<string | number | symbol, unknown>): void;
197
+ }
198
+ declare global {
199
+ interface HTMLElementTagNameMap {
200
+ 'qti-modal-feedback': QtiModalFeedback;
201
+ }
202
+ }
203
+
204
+ /**
205
+ * @summary The qti-item-body node contains the text, graphics, media objects and interactions that describe the item's content and information about how it is structured.
206
+ * @documentation https://www.imsglobal.org/spec/qti/v3p0/impl#h.sphpo6lu6zqi
207
+ * @status stable
208
+ * @since 4.0
209
+ *
210
+ * @slot - item body content.
211
+ * @slot qti-rubric-block - the qti rubric block is placed above the item
212
+ * @part qti-rubric-block - the qti rubric block part
213
+ */
214
+ declare class QtiItemBody extends LitElement {
215
+ static styles: CSSResultGroup;
216
+ render(): lit.TemplateResult<1>;
217
+ }
218
+ declare global {
219
+ interface HTMLElementTagNameMap {
220
+ 'qti-item-body': QtiItemBody;
221
+ }
222
+ }
223
+
224
+ declare class QtiPrompt extends LitElement {
225
+ render(): lit.TemplateResult<1>;
226
+ connectedCallback(): void;
227
+ }
228
+ declare global {
229
+ interface HTMLElementTagNameMap {
230
+ 'qti-prompt': QtiPrompt;
231
+ }
232
+ }
233
+
234
+ declare class QtiContentBody extends LitElement {
235
+ render(): lit.TemplateResult<1>;
236
+ }
237
+ declare global {
238
+ interface HTMLElementTagNameMap {
239
+ 'qti-content-body': QtiContentBody;
240
+ }
241
+ }
242
+
243
+ declare class QtiRubricBlock extends LitElement {
244
+ id: string;
245
+ use: 'instructions' | 'scoring' | 'navigation';
246
+ view: 'author' | 'candidate' | 'proctor' | 'scorer' | 'testConstructor' | 'tutor';
247
+ classNames: string;
248
+ handleclassNamesChange(): void;
249
+ static styles: lit.CSSResult;
250
+ render(): lit.TemplateResult<1>;
251
+ }
252
+ declare global {
253
+ interface HTMLElementTagNameMap {
254
+ 'qti-rubric-block': QtiRubricBlock;
255
+ }
256
+ }
257
+
258
+ declare class QtiStylesheet extends LitElement {
259
+ private styleElement;
260
+ protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
261
+ private minifyCss;
262
+ disconnectedCallback(): void;
263
+ }
264
+ declare global {
265
+ interface HTMLElementTagNameMap {
266
+ 'qti-stylesheet': QtiStylesheet;
267
+ }
268
+ }
269
+
270
+ declare class QtiResponseDeclaration extends QtiVariableDeclaration {
271
+ baseType: BaseType;
272
+ identifier: string;
273
+ cardinality: Cardinality;
274
+ itemContext?: ItemContext;
275
+ static styles: lit.CSSResult[];
276
+ render(): lit.TemplateResult<1>;
277
+ connectedCallback(): void;
278
+ private get correctResponse();
279
+ private get mapping();
280
+ private get areaMapping();
281
+ }
282
+ declare global {
283
+ interface HTMLElementTagNameMap {
284
+ 'qti-response-declaration': QtiResponseDeclaration;
285
+ }
286
+ }
287
+
288
+ declare class QtiOutcomeDeclaration extends QtiVariableDeclaration {
289
+ baseType: BaseType;
290
+ externalScored: 'human' | 'externalMachine' | null;
291
+ identifier: string;
292
+ cardinality: Cardinality;
293
+ itemContext?: ItemContext;
294
+ static styles: lit.CSSResult[];
295
+ render(): lit.TemplateResult<1>;
296
+ get interpolationTable(): Map<number, number> | null;
297
+ connectedCallback(): void;
298
+ }
299
+ declare global {
300
+ interface HTMLElementTagNameMap {
301
+ 'qti-outcome-declaration': QtiOutcomeDeclaration;
302
+ }
303
+ }
304
+
305
+ declare class QtiResponseProcessing extends LitElement {
306
+ static styles: lit.CSSResult[];
307
+ render(): lit.TemplateResult<1>;
308
+ process(): void;
309
+ firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
310
+ private fragmentFromString;
311
+ }
312
+ declare global {
313
+ interface HTMLElementTagNameMap {
314
+ 'qti-response-processing': QtiResponseProcessing;
315
+ }
316
+ }
317
+
318
+ export { QtiAssessmentItem, QtiAssessmentStimulusRef, QtiAssessmentStimulusRefConnectedEvent, QtiCompanionMaterialsInfo, QtiContentBody, QtiCustomOperator, QtiFeedbackBlock, QtiFeedbackInline, QtiItemBody, QtiModalFeedback, QtiOutcomeDeclaration, QtiPrompt, QtiResponseDeclaration, QtiResponseProcessing, QtiRubricBlock, QtiStylesheet };
package/dist/elements.js CHANGED
@@ -1,3 +1,42 @@
1
- // src/elements.ts
2
- export * from "@qti-components/elements";
1
+ import {
2
+ QtiAssessmentItem,
3
+ QtiAssessmentStimulusRef,
4
+ QtiAssessmentStimulusRefConnectedEvent,
5
+ QtiCompanionMaterialsInfo,
6
+ QtiContentBody,
7
+ QtiCustomOperator,
8
+ QtiFeedbackBlock,
9
+ QtiFeedbackInline,
10
+ QtiItemBody,
11
+ QtiModalFeedback,
12
+ QtiOutcomeDeclaration,
13
+ QtiPrompt,
14
+ QtiResponseDeclaration,
15
+ QtiResponseProcessing,
16
+ QtiRubricBlock,
17
+ QtiStylesheet
18
+ } from "./chunk-O4XIWHTF.js";
19
+ import "./chunk-DWIRLYDS.js";
20
+ import "./chunk-2ZEJ3RR5.js";
21
+ import "./chunk-INKI27D5.js";
22
+ import "./chunk-JEUY3MYB.js";
23
+ import "./chunk-EUXUH3YW.js";
24
+ export {
25
+ QtiAssessmentItem,
26
+ QtiAssessmentStimulusRef,
27
+ QtiAssessmentStimulusRefConnectedEvent,
28
+ QtiCompanionMaterialsInfo,
29
+ QtiContentBody,
30
+ QtiCustomOperator,
31
+ QtiFeedbackBlock,
32
+ QtiFeedbackInline,
33
+ QtiItemBody,
34
+ QtiModalFeedback,
35
+ QtiOutcomeDeclaration,
36
+ QtiPrompt,
37
+ QtiResponseDeclaration,
38
+ QtiResponseProcessing,
39
+ QtiRubricBlock,
40
+ QtiStylesheet
41
+ };
3
42
  //# sourceMappingURL=elements.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/elements.ts"],"sourcesContent":["export * from '@qti-components/elements';\n"],"mappings":";AAAA,cAAc;","names":[]}
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/dist/index.d.ts CHANGED
@@ -1,8 +1,21 @@
1
- export * from '@qti-components/test';
2
- export * from '@qti-components/item';
3
- export * from '@qti-components/elements';
4
- export * from '@qti-components/interactions';
5
- export * from '@qti-components/transformers';
6
- export * from '@qti-components/loader';
7
- export * from '@qti-components/base';
8
- export * from '@qti-components/processing';
1
+ export { IMyQtiTest, IQtiTest, ITestNavigationMixin, ITestProcessingMixin, QtiAssessmentItemRef, QtiAssessmentSection, QtiAssessmentTest, QtiTest, QtiTestFeedback, QtiTestPart, TestCheckItem, TestContainer, TestEndAttempt, TestItemLink, TestNavigation, TestNext, TestPagingButtonsStamp, TestPrev, TestPrintContext, TestPrintVariables, TestScoringButtons, TestScoringFeedback, TestSectionButtonsStamp, TestSectionLink, TestShowCorrectResponse, TestStamp, TestView, TestViewToggle } from './test.js';
2
+ export { ItemContainer, ItemCorrectResponseMode, ItemPrintVariables, ItemShowCandidateCorrection, ItemShowCorrectResponse, QtiItem } from './item.js';
3
+ export { QtiAssessmentItem, QtiAssessmentStimulusRef, QtiAssessmentStimulusRefConnectedEvent, QtiCompanionMaterialsInfo, QtiContentBody, QtiCustomOperator, QtiFeedbackBlock, QtiFeedbackInline, QtiItemBody, QtiModalFeedback, QtiOutcomeDeclaration, QtiPrompt, QtiResponseDeclaration, QtiResponseProcessing, QtiRubricBlock, QtiStylesheet } from './elements.js';
4
+ export { Orientation, QtiAssociableHotspot, QtiAssociateInteraction, QtiChoiceInteraction, QtiCustomInteraction, QtiEndAttemptInteraction, QtiExtendedTextInteraction, QtiGap, QtiGapImg, QtiGapMatchInteraction, QtiGapText, QtiGraphicAssociateInteraction, QtiGraphicGapMatchInteraction, QtiGraphicOrderInteraction, QtiHotspotChoice, QtiHotspotInteraction, QtiHottext, QtiHottextInteraction, QtiInlineChoice, QtiInlineChoiceInteraction, QtiMatchInteraction, QtiMediaInteraction, QtiOrderInteraction, QtiPortableCustomInteraction, QtiPositionObjectInteraction, QtiPositionObjectStage, QtiSelectPointInteraction, QtiSimpleAssociableChoice, QtiSimpleChoice, QtiSliderInteraction, QtiTextEntryInteraction, QtiUploadInteraction } from './interactions.js';
5
+ export { M as ModuleResolutionConfig, q as qtiTransformItem, b as qtiTransformTest, t as transformItemApi, a as transformTestApi } from './qti-transform-test-Bz9A3hmD.js';
6
+ export { qtiTransformManifest } from './transformers.js';
7
+ export { ManifestInfo, getItemByUri, getManifestInfo } from './loader.js';
8
+ export { C as ComputedItemContext, c as computedItemContext } from './computed-item.context-CiddHLPz.js';
9
+ export { a as ComputedContext, C as ComputedItem, I as INITIAL_SESSION_CONTEXT, S as SessionContext, V as View, c as computedContext, s as sessionContext } from './computed.context-CH09_LCR.js';
10
+ export { a as ConfigContext, C as CorrectResponseMode, c as configContext } from './config.context-DAdkDDf5.js';
11
+ export { I as ItemContext, i as itemContextVariables } from './item.context-BRKXBC3m.js';
12
+ export { IsNullOrUndefined, ScoringHelper, convertNumberToUniversalFormat, decimalSeparator, itemContext, removeDoubleSlashes } from './base.js';
13
+ export { I as INITIAL_TEST_CONTEXT, a as QtiContext, Q as QtiContextType, T as TestContext, q as qtiContext, t as testContext } from './test.context-Bpw1HNAZ.js';
14
+ export { C as Correctness, a as IInteraction, I as Interaction } from './interaction-C5Up6-68.js';
15
+ export { a as QtiFeedback, Q as QtiVariableDeclaration } from './qti-feedback-B4cMzOcq.js';
16
+ export { Q as QtiConditionExpression, b as QtiExpression, a as QtiExpressionBase, c as QtiRuleBase, d as QtiRuleElement } from './qti-rule-base-dL4opfvi.js';
17
+ export { B as BaseType, C as Calculate, a as Cardinality, M as Multiple, O as Ordered, j as OutcomeVariable, b as QtiAreaMapEntry, Q as QtiAreaMapping, e as QtiMapEntry, c as QtiMapping, R as ResponseInteraction, k as ResponseVariable, T as TemplateVariable, h as VariableDeclaration, V as VariableValue, g as areaShape, d as directedPair, f as float, i as integer } from './variables-CusMRnyJ.js';
18
+ export { QtiAnd, QtiBaseValue, QtiContainerSize, QtiContains, QtiCorrect, QtiDefault, QtiDelete, QtiEqual, QtiEqualRounded, QtiFieldValue, QtiGcd, QtiGt, QtiGte, QtiIndex, QtiIsNull, QtiLookupOutcomeValue, QtiLt, QtiLte, QtiMapResponse, QtiMapResponsePoint, QtiMatch, QtiMathOperator, QtiMember, QtiMultiple, QtiNot, QtiNull, QtiOr, QtiOrdered, QtiPower, QtiPrintedVariable, QtiProduct, QtiRandom, QtiRandomInteger, QtiResponseCondition, QtiResponseElse, QtiResponseElseIf, QtiResponseIf, QtiRound, QtiRoundTo, QtiSetOutcomeValue, QtiSetOutcomeValueRule, QtiStringMatch, QtiSubtract, QtiSum, QtiSumExpression, QtiVariable, qtiAndMixin, qtiSubtractMixin } from './processing.js';
19
+ import 'lit';
20
+ import '@heximal/templates';
21
+ import 'lit/directives/ref.js';