@qti-editor/core 0.2.0 → 0.3.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.
@@ -1 +1 @@
1
- {"version":3,"file":"composer.d.ts","sourceRoot":"","sources":["../../src/interactions/composer.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,0BAA0B,EAC1B,2BAA2B,EAC3B,qBAAqB,EACrB,0BAA0B,EAC3B,MAAM,wBAAwB,CAAC;AA+BhC,wBAAgB,8BAA8B,CAAC,OAAO,EAAE,MAAM,GAAG,2BAA2B,GAAG,SAAS,CAEvG;AAED,wBAAgB,4CAA4C,CAC1D,YAAY,EAAE,MAAM,GACnB,2BAA2B,GAAG,SAAS,CAEzC;AAED,wBAAgB,2CAA2C,CACzD,YAAY,EAAE,MAAM,GACnB,0BAA0B,GAAG,SAAS,CAExC;AAED,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,MAAM,GAAG,0BAA0B,GAAG,SAAS,CAErG;AAED,wBAAgB,+BAA+B,IAAI,aAAa,CAAC,0BAA0B,CAAC,CAE3F;AAED,wBAAgB,0BAA0B,IAAI,aAAa,CAAC,qBAAqB,CAAC,CAEjF"}
1
+ {"version":3,"file":"composer.d.ts","sourceRoot":"","sources":["../../src/interactions/composer.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EACV,0BAA0B,EAC1B,2BAA2B,EAC3B,qBAAqB,EACrB,0BAA0B,EAC3B,MAAM,wBAAwB,CAAC;AAkChC,wBAAgB,8BAA8B,CAAC,OAAO,EAAE,MAAM,GAAG,2BAA2B,GAAG,SAAS,CAEvG;AAED,wBAAgB,4CAA4C,CAC1D,YAAY,EAAE,MAAM,GACnB,2BAA2B,GAAG,SAAS,CAEzC;AAED,wBAAgB,2CAA2C,CACzD,YAAY,EAAE,MAAM,GACnB,0BAA0B,GAAG,SAAS,CAExC;AAED,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,MAAM,GAAG,0BAA0B,GAAG,SAAS,CAErG;AAED,wBAAgB,+BAA+B,IAAI,aAAa,CAAC,0BAA0B,CAAC,CAE3F;AAED,wBAAgB,0BAA0B,IAAI,aAAa,CAAC,qBAAqB,CAAC,CAEjF"}
@@ -1,14 +1,20 @@
1
+ import { associateInteractionDescriptor } from '@qti-editor/interaction-associate';
1
2
  import { choiceInteractionDescriptor } from '@qti-editor/interaction-choice';
2
3
  import { extendedTextInteractionDescriptor } from '@qti-editor/interaction-extended-text';
4
+ import { hottextInteractionDescriptor } from '@qti-editor/interaction-hottext';
3
5
  import { inlineChoiceInteractionDescriptor } from '@qti-editor/interaction-inline-choice';
4
6
  import { matchInteractionDescriptor } from '@qti-editor/interaction-match';
7
+ import { orderInteractionDescriptor } from '@qti-editor/interaction-order';
5
8
  import { selectPointInteractionDescriptor } from '@qti-editor/interaction-select-point';
6
9
  import { textEntryInteractionDescriptor } from '@qti-editor/interaction-text-entry';
7
10
  const registeredDescriptors = [
11
+ associateInteractionDescriptor,
8
12
  choiceInteractionDescriptor,
9
13
  extendedTextInteractionDescriptor,
14
+ hottextInteractionDescriptor,
10
15
  inlineChoiceInteractionDescriptor,
11
16
  matchInteractionDescriptor,
17
+ orderInteractionDescriptor,
12
18
  selectPointInteractionDescriptor,
13
19
  textEntryInteractionDescriptor,
14
20
  ];
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@qti-editor/core",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "QTI semantics, composer registry, and XML export orchestration for QTI Editor",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Citolab/qti-editor",
8
+ "directory": "packages/qti/core"
9
+ },
5
10
  "type": "module",
6
11
  "main": "./dist/index.js",
7
12
  "exports": {
@@ -19,14 +24,17 @@
19
24
  }
20
25
  },
21
26
  "dependencies": {
22
- "@qti-editor/interfaces": "0.2.0",
23
- "@qti-editor/interaction-choice": "0.2.0",
24
- "@qti-editor/interaction-inline-choice": "0.2.0",
25
- "@qti-editor/interaction-match": "0.2.0",
26
- "@qti-editor/interaction-shared": "0.2.0",
27
- "@qti-editor/interaction-text-entry": "0.2.0",
28
- "@qti-editor/interaction-extended-text": "0.2.0",
29
- "@qti-editor/interaction-select-point": "0.2.0"
27
+ "@qti-editor/interfaces": "0.3.0",
28
+ "@qti-editor/interaction-associate": "0.2.0",
29
+ "@qti-editor/interaction-extended-text": "0.2.1",
30
+ "@qti-editor/interaction-choice": "0.2.1",
31
+ "@qti-editor/interaction-hottext": "0.2.0",
32
+ "@qti-editor/interaction-inline-choice": "0.2.1",
33
+ "@qti-editor/interaction-match": "0.3.0",
34
+ "@qti-editor/interaction-select-point": "0.2.1",
35
+ "@qti-editor/interaction-order": "0.3.0",
36
+ "@qti-editor/interaction-shared": "0.2.1",
37
+ "@qti-editor/interaction-text-entry": "0.2.1"
30
38
  },
31
39
  "devDependencies": {
32
40
  "@types/node": "^20.0.0",