@citolab/qti-components 6.7.1-18 → 6.7.1-25
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 +94 -250
- package/dist/index.js +30 -34
- package/dist/item-normalize.css +173 -0
- package/dist/item-prose.css +51 -0
- package/dist/item.css +710 -2627
- package/dist/qti-components/index.js +5 -9
- package/dist/qti-transformers/index.d.ts +3 -0
- package/dist/qti-transformers/index.js +3 -3
- package/package.json +46 -42
- package/dist/item.minimal.css +0 -1846
|
@@ -2,6 +2,100 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "src/lib/decorators/index.ts",
|
|
8
|
+
"declarations": [],
|
|
9
|
+
"exports": [
|
|
10
|
+
{
|
|
11
|
+
"kind": "js",
|
|
12
|
+
"name": "*",
|
|
13
|
+
"declaration": {
|
|
14
|
+
"name": "*",
|
|
15
|
+
"package": "./live-query"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"kind": "js",
|
|
20
|
+
"name": "*",
|
|
21
|
+
"declaration": {
|
|
22
|
+
"name": "*",
|
|
23
|
+
"package": "./watch"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"kind": "javascript-module",
|
|
30
|
+
"path": "src/lib/decorators/live-query.ts",
|
|
31
|
+
"declarations": [
|
|
32
|
+
{
|
|
33
|
+
"kind": "function",
|
|
34
|
+
"name": "liveQuery",
|
|
35
|
+
"parameters": [
|
|
36
|
+
{
|
|
37
|
+
"name": "querySelector",
|
|
38
|
+
"type": {
|
|
39
|
+
"text": "string"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "options",
|
|
44
|
+
"optional": true,
|
|
45
|
+
"type": {
|
|
46
|
+
"text": "LiveQueryOptions"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"exports": [
|
|
53
|
+
{
|
|
54
|
+
"kind": "js",
|
|
55
|
+
"name": "liveQuery",
|
|
56
|
+
"declaration": {
|
|
57
|
+
"name": "liveQuery",
|
|
58
|
+
"module": "src/lib/decorators/live-query.ts"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"kind": "javascript-module",
|
|
65
|
+
"path": "src/lib/decorators/watch.ts",
|
|
66
|
+
"declarations": [
|
|
67
|
+
{
|
|
68
|
+
"kind": "function",
|
|
69
|
+
"name": "watch",
|
|
70
|
+
"parameters": [
|
|
71
|
+
{
|
|
72
|
+
"name": "propertyName",
|
|
73
|
+
"type": {
|
|
74
|
+
"text": "string | string[]"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "options",
|
|
79
|
+
"optional": true,
|
|
80
|
+
"type": {
|
|
81
|
+
"text": "WatchOptions"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"description": "Runs when observed properties change, e.g. @property or @state, but before the component updates. To wait for an\nupdate to complete after a change occurs, use `await this.updateComplete` in the handler. To start watching after the\ninitial update/render, use `{ waitUntilFirstUpdate: true }` or `this.hasUpdated` in the handler.\n\nUsage:"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"exports": [
|
|
89
|
+
{
|
|
90
|
+
"kind": "js",
|
|
91
|
+
"name": "watch",
|
|
92
|
+
"declaration": {
|
|
93
|
+
"name": "watch",
|
|
94
|
+
"module": "src/lib/decorators/watch.ts"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
5
99
|
{
|
|
6
100
|
"kind": "javascript-module",
|
|
7
101
|
"path": "src/lib/qti-components/index.ts",
|
|
@@ -417,100 +511,6 @@
|
|
|
417
511
|
}
|
|
418
512
|
]
|
|
419
513
|
},
|
|
420
|
-
{
|
|
421
|
-
"kind": "javascript-module",
|
|
422
|
-
"path": "src/lib/decorators/index.ts",
|
|
423
|
-
"declarations": [],
|
|
424
|
-
"exports": [
|
|
425
|
-
{
|
|
426
|
-
"kind": "js",
|
|
427
|
-
"name": "*",
|
|
428
|
-
"declaration": {
|
|
429
|
-
"name": "*",
|
|
430
|
-
"package": "./live-query"
|
|
431
|
-
}
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
"kind": "js",
|
|
435
|
-
"name": "*",
|
|
436
|
-
"declaration": {
|
|
437
|
-
"name": "*",
|
|
438
|
-
"package": "./watch"
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
]
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"kind": "javascript-module",
|
|
445
|
-
"path": "src/lib/decorators/live-query.ts",
|
|
446
|
-
"declarations": [
|
|
447
|
-
{
|
|
448
|
-
"kind": "function",
|
|
449
|
-
"name": "liveQuery",
|
|
450
|
-
"parameters": [
|
|
451
|
-
{
|
|
452
|
-
"name": "querySelector",
|
|
453
|
-
"type": {
|
|
454
|
-
"text": "string"
|
|
455
|
-
}
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"name": "options",
|
|
459
|
-
"optional": true,
|
|
460
|
-
"type": {
|
|
461
|
-
"text": "LiveQueryOptions"
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
]
|
|
465
|
-
}
|
|
466
|
-
],
|
|
467
|
-
"exports": [
|
|
468
|
-
{
|
|
469
|
-
"kind": "js",
|
|
470
|
-
"name": "liveQuery",
|
|
471
|
-
"declaration": {
|
|
472
|
-
"name": "liveQuery",
|
|
473
|
-
"module": "src/lib/decorators/live-query.ts"
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
|
-
]
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
"kind": "javascript-module",
|
|
480
|
-
"path": "src/lib/decorators/watch.ts",
|
|
481
|
-
"declarations": [
|
|
482
|
-
{
|
|
483
|
-
"kind": "function",
|
|
484
|
-
"name": "watch",
|
|
485
|
-
"parameters": [
|
|
486
|
-
{
|
|
487
|
-
"name": "propertyName",
|
|
488
|
-
"type": {
|
|
489
|
-
"text": "string | string[]"
|
|
490
|
-
}
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
"name": "options",
|
|
494
|
-
"optional": true,
|
|
495
|
-
"type": {
|
|
496
|
-
"text": "WatchOptions"
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
],
|
|
500
|
-
"description": "Runs when observed properties change, e.g. @property or @state, but before the component updates. To wait for an\nupdate to complete after a change occurs, use `await this.updateComplete` in the handler. To start watching after the\ninitial update/render, use `{ waitUntilFirstUpdate: true }` or `this.hasUpdated` in the handler.\n\nUsage:"
|
|
501
|
-
}
|
|
502
|
-
],
|
|
503
|
-
"exports": [
|
|
504
|
-
{
|
|
505
|
-
"kind": "js",
|
|
506
|
-
"name": "watch",
|
|
507
|
-
"declaration": {
|
|
508
|
-
"name": "watch",
|
|
509
|
-
"module": "src/lib/decorators/watch.ts"
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
]
|
|
513
|
-
},
|
|
514
514
|
{
|
|
515
515
|
"kind": "javascript-module",
|
|
516
516
|
"path": "src/lib/qti-transformers/index.ts",
|
|
@@ -2280,12 +2280,6 @@
|
|
|
2280
2280
|
}
|
|
2281
2281
|
]
|
|
2282
2282
|
},
|
|
2283
|
-
{
|
|
2284
|
-
"kind": "javascript-module",
|
|
2285
|
-
"path": "src/lib/qti-components/qti-feedback/__snapshots__/qti-feedback.stories.ts.snap",
|
|
2286
|
-
"declarations": [],
|
|
2287
|
-
"exports": []
|
|
2288
|
-
},
|
|
2289
2283
|
{
|
|
2290
2284
|
"kind": "javascript-module",
|
|
2291
2285
|
"path": "src/lib/qti-components/qti-feedback/qti-feedback-block/qti-feedback-block.ts",
|
|
@@ -5323,12 +5317,6 @@
|
|
|
5323
5317
|
}
|
|
5324
5318
|
]
|
|
5325
5319
|
},
|
|
5326
|
-
{
|
|
5327
|
-
"kind": "javascript-module",
|
|
5328
|
-
"path": "src/lib/qti-components/qti-stylesheet/__snapshots__/qti-stylesheet.stories.ts.snap",
|
|
5329
|
-
"declarations": [],
|
|
5330
|
-
"exports": []
|
|
5331
|
-
},
|
|
5332
5320
|
{
|
|
5333
5321
|
"kind": "javascript-module",
|
|
5334
5322
|
"path": "src/lib/qti-components/qti-variable-declaration/qti-outcome-declaration/qti-outcome-declaration.ts",
|
|
@@ -6086,120 +6074,6 @@
|
|
|
6086
6074
|
}
|
|
6087
6075
|
]
|
|
6088
6076
|
},
|
|
6089
|
-
{
|
|
6090
|
-
"kind": "javascript-module",
|
|
6091
|
-
"path": "src/lib/qti-components/qti-interaction/qti-associate-interaction/__snapshots__/qti-associate-interaction.stories.ts.snap",
|
|
6092
|
-
"declarations": [],
|
|
6093
|
-
"exports": []
|
|
6094
|
-
},
|
|
6095
|
-
{
|
|
6096
|
-
"kind": "javascript-module",
|
|
6097
|
-
"path": "src/lib/qti-components/qti-interaction/qti-choice-interaction/__snapshots__/qti-choice-interaction.stories.ts.snap",
|
|
6098
|
-
"declarations": [],
|
|
6099
|
-
"exports": []
|
|
6100
|
-
},
|
|
6101
|
-
{
|
|
6102
|
-
"kind": "javascript-module",
|
|
6103
|
-
"path": "src/lib/qti-components/qti-interaction/qti-end-attempt-interaction/__snapshots__/qti-end-attempt-interaction.stories.ts.snap",
|
|
6104
|
-
"declarations": [],
|
|
6105
|
-
"exports": []
|
|
6106
|
-
},
|
|
6107
|
-
{
|
|
6108
|
-
"kind": "javascript-module",
|
|
6109
|
-
"path": "src/lib/qti-components/qti-interaction/qti-extended-text-interaction/__snapshots__/qti-extended-text-interaction.stories.ts.snap",
|
|
6110
|
-
"declarations": [],
|
|
6111
|
-
"exports": []
|
|
6112
|
-
},
|
|
6113
|
-
{
|
|
6114
|
-
"kind": "javascript-module",
|
|
6115
|
-
"path": "src/lib/qti-components/qti-interaction/qti-gap-match-interaction/__snapshots__/qti-gap-match-interaction.stories.ts.snap",
|
|
6116
|
-
"declarations": [],
|
|
6117
|
-
"exports": []
|
|
6118
|
-
},
|
|
6119
|
-
{
|
|
6120
|
-
"kind": "javascript-module",
|
|
6121
|
-
"path": "src/lib/qti-components/qti-interaction/qti-graphic-associate-interaction/__snapshots__/qti-graphic-associate-interaction.stories.ts.snap",
|
|
6122
|
-
"declarations": [],
|
|
6123
|
-
"exports": []
|
|
6124
|
-
},
|
|
6125
|
-
{
|
|
6126
|
-
"kind": "javascript-module",
|
|
6127
|
-
"path": "src/lib/qti-components/qti-interaction/qti-graphic-gap-match-interaction/__snapshots__/qti-graphic-gap-match-interaction.stories.ts.snap",
|
|
6128
|
-
"declarations": [],
|
|
6129
|
-
"exports": []
|
|
6130
|
-
},
|
|
6131
|
-
{
|
|
6132
|
-
"kind": "javascript-module",
|
|
6133
|
-
"path": "src/lib/qti-components/qti-interaction/qti-graphic-order-interaction/__snapshots__/qti-graphic-order-interaction.stories.ts.snap",
|
|
6134
|
-
"declarations": [],
|
|
6135
|
-
"exports": []
|
|
6136
|
-
},
|
|
6137
|
-
{
|
|
6138
|
-
"kind": "javascript-module",
|
|
6139
|
-
"path": "src/lib/qti-components/qti-interaction/qti-hotspot-interaction/__snapshots__/qti-hotspot-interaction.stories.ts.snap",
|
|
6140
|
-
"declarations": [],
|
|
6141
|
-
"exports": []
|
|
6142
|
-
},
|
|
6143
|
-
{
|
|
6144
|
-
"kind": "javascript-module",
|
|
6145
|
-
"path": "src/lib/qti-components/qti-interaction/qti-hottext-interaction/__snapshots__/qti-hottext-interaction.stories.ts.snap",
|
|
6146
|
-
"declarations": [],
|
|
6147
|
-
"exports": []
|
|
6148
|
-
},
|
|
6149
|
-
{
|
|
6150
|
-
"kind": "javascript-module",
|
|
6151
|
-
"path": "src/lib/qti-components/qti-interaction/qti-inline-choice-interaction/__snapshots__/qti-inline-choice-interaction.stories.ts.snap",
|
|
6152
|
-
"declarations": [],
|
|
6153
|
-
"exports": []
|
|
6154
|
-
},
|
|
6155
|
-
{
|
|
6156
|
-
"kind": "javascript-module",
|
|
6157
|
-
"path": "src/lib/qti-components/qti-interaction/qti-match-interaction/__snapshots__/qti-match-interaction.stories.ts.snap",
|
|
6158
|
-
"declarations": [],
|
|
6159
|
-
"exports": []
|
|
6160
|
-
},
|
|
6161
|
-
{
|
|
6162
|
-
"kind": "javascript-module",
|
|
6163
|
-
"path": "src/lib/qti-components/qti-interaction/qti-media-interaction/__snapshots__/qti-media-interaction.stories.ts.snap",
|
|
6164
|
-
"declarations": [],
|
|
6165
|
-
"exports": []
|
|
6166
|
-
},
|
|
6167
|
-
{
|
|
6168
|
-
"kind": "javascript-module",
|
|
6169
|
-
"path": "src/lib/qti-components/qti-interaction/qti-order-interaction/__snapshots__/qti-order-interaction.stories.ts.snap",
|
|
6170
|
-
"declarations": [],
|
|
6171
|
-
"exports": []
|
|
6172
|
-
},
|
|
6173
|
-
{
|
|
6174
|
-
"kind": "javascript-module",
|
|
6175
|
-
"path": "src/lib/qti-components/qti-interaction/qti-portable-custom-interaction/__snapshots__/qti-portable-custom-interaction.stories.ts.snap",
|
|
6176
|
-
"declarations": [],
|
|
6177
|
-
"exports": []
|
|
6178
|
-
},
|
|
6179
|
-
{
|
|
6180
|
-
"kind": "javascript-module",
|
|
6181
|
-
"path": "src/lib/qti-components/qti-interaction/qti-position-object-interaction/__snapshots__/qti-position-object-interaction.stories.ts.snap",
|
|
6182
|
-
"declarations": [],
|
|
6183
|
-
"exports": []
|
|
6184
|
-
},
|
|
6185
|
-
{
|
|
6186
|
-
"kind": "javascript-module",
|
|
6187
|
-
"path": "src/lib/qti-components/qti-interaction/qti-select-point-interaction/__snapshots__/qti-select-point-interaction.stories.ts.snap",
|
|
6188
|
-
"declarations": [],
|
|
6189
|
-
"exports": []
|
|
6190
|
-
},
|
|
6191
|
-
{
|
|
6192
|
-
"kind": "javascript-module",
|
|
6193
|
-
"path": "src/lib/qti-components/qti-interaction/qti-slider-interaction/__snapshots__/qti-slider-interaction.stories.ts.snap",
|
|
6194
|
-
"declarations": [],
|
|
6195
|
-
"exports": []
|
|
6196
|
-
},
|
|
6197
|
-
{
|
|
6198
|
-
"kind": "javascript-module",
|
|
6199
|
-
"path": "src/lib/qti-components/qti-interaction/qti-text-entry-interaction/__snapshots__/qti-text-entry-interaction.stories.ts.snap",
|
|
6200
|
-
"declarations": [],
|
|
6201
|
-
"exports": []
|
|
6202
|
-
},
|
|
6203
6077
|
{
|
|
6204
6078
|
"kind": "javascript-module",
|
|
6205
6079
|
"path": "src/lib/qti-components/qti-response-processing/qti-expression/qti-and/index.ts",
|
|
@@ -7397,24 +7271,6 @@
|
|
|
7397
7271
|
}
|
|
7398
7272
|
]
|
|
7399
7273
|
},
|
|
7400
|
-
{
|
|
7401
|
-
"kind": "javascript-module",
|
|
7402
|
-
"path": "src/lib/qti-components/qti-response-processing/qti-expression/qti-and/__snapshots__/qti-and.stories.ts.snap",
|
|
7403
|
-
"declarations": [],
|
|
7404
|
-
"exports": []
|
|
7405
|
-
},
|
|
7406
|
-
{
|
|
7407
|
-
"kind": "javascript-module",
|
|
7408
|
-
"path": "src/lib/qti-components/qti-response-processing/qti-expression/qti-member/__snapshots__/qti-member.stories.ts.snap",
|
|
7409
|
-
"declarations": [],
|
|
7410
|
-
"exports": []
|
|
7411
|
-
},
|
|
7412
|
-
{
|
|
7413
|
-
"kind": "javascript-module",
|
|
7414
|
-
"path": "src/lib/qti-components/qti-response-processing/qti-expression/qti-printed-variable/__snapshots__/qti-printed-variable.stories.ts.snap",
|
|
7415
|
-
"declarations": [],
|
|
7416
|
-
"exports": []
|
|
7417
|
-
},
|
|
7418
7274
|
{
|
|
7419
7275
|
"kind": "javascript-module",
|
|
7420
7276
|
"path": "src/lib/qti-components/qti-response-processing/qti-response-else/qti-response-if/qti-response-else-if/qti-response-else-if.ts",
|
|
@@ -7450,18 +7306,6 @@
|
|
|
7450
7306
|
}
|
|
7451
7307
|
}
|
|
7452
7308
|
]
|
|
7453
|
-
},
|
|
7454
|
-
{
|
|
7455
|
-
"kind": "javascript-module",
|
|
7456
|
-
"path": "src/lib/qti-components/qti-response-processing/qti-rule/qti-lookup-outcome-value/__snapshots__/qti-lookup-outcome-value.stories.ts.snap",
|
|
7457
|
-
"declarations": [],
|
|
7458
|
-
"exports": []
|
|
7459
|
-
},
|
|
7460
|
-
{
|
|
7461
|
-
"kind": "javascript-module",
|
|
7462
|
-
"path": "src/lib/qti-components/qti-response-processing/qti-rule/qti-set-outcome-value/__snapshots__/qti-set-outcome-value.stories.ts.snap",
|
|
7463
|
-
"declarations": [],
|
|
7464
|
-
"exports": []
|
|
7465
7309
|
}
|
|
7466
7310
|
]
|
|
7467
7311
|
}
|