@citolab/qti-components 6.7.1-15 → 6.7.1-17

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.
@@ -2,6 +2,159 @@
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
+ },
99
+ {
100
+ "kind": "javascript-module",
101
+ "path": "src/lib/qti-transformers/index.ts",
102
+ "declarations": [],
103
+ "exports": [
104
+ {
105
+ "kind": "js",
106
+ "name": "*",
107
+ "declaration": {
108
+ "name": "*",
109
+ "package": "./qti-transformers"
110
+ }
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ "kind": "javascript-module",
116
+ "path": "src/lib/qti-transformers/qti-transformers.ts",
117
+ "declarations": [
118
+ {
119
+ "kind": "function",
120
+ "name": "qtiTransformItem",
121
+ "return": {
122
+ "type": {
123
+ "text": ""
124
+ }
125
+ },
126
+ "description": "Browser based QTI-XML to HTML transformer.\nReturns an object with methods to load, parse, transform and serialize QTI XML items."
127
+ },
128
+ {
129
+ "kind": "function",
130
+ "name": "qtiTransformTest",
131
+ "return": {
132
+ "type": {
133
+ "text": ""
134
+ }
135
+ },
136
+ "description": "Returns an object with methods to load, parse and transform QTI tests."
137
+ }
138
+ ],
139
+ "exports": [
140
+ {
141
+ "kind": "js",
142
+ "name": "qtiTransformItem",
143
+ "declaration": {
144
+ "name": "qtiTransformItem",
145
+ "module": "src/lib/qti-transformers/qti-transformers.ts"
146
+ }
147
+ },
148
+ {
149
+ "kind": "js",
150
+ "name": "qtiTransformTest",
151
+ "declaration": {
152
+ "name": "qtiTransformTest",
153
+ "module": "src/lib/qti-transformers/qti-transformers.ts"
154
+ }
155
+ }
156
+ ]
157
+ },
5
158
  {
6
159
  "kind": "javascript-module",
7
160
  "path": "src/lib/qti-components/index.ts",
@@ -417,159 +570,6 @@
417
570
  }
418
571
  ]
419
572
  },
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
- {
515
- "kind": "javascript-module",
516
- "path": "src/lib/qti-transformers/index.ts",
517
- "declarations": [],
518
- "exports": [
519
- {
520
- "kind": "js",
521
- "name": "*",
522
- "declaration": {
523
- "name": "*",
524
- "package": "./qti-transformers"
525
- }
526
- }
527
- ]
528
- },
529
- {
530
- "kind": "javascript-module",
531
- "path": "src/lib/qti-transformers/qti-transformers.ts",
532
- "declarations": [
533
- {
534
- "kind": "function",
535
- "name": "qtiTransformItem",
536
- "return": {
537
- "type": {
538
- "text": ""
539
- }
540
- },
541
- "description": "Browser based QTI-XML to HTML transformer.\nReturns an object with methods to load, parse, transform and serialize QTI XML items."
542
- },
543
- {
544
- "kind": "function",
545
- "name": "qtiTransformTest",
546
- "return": {
547
- "type": {
548
- "text": ""
549
- }
550
- },
551
- "description": "Returns an object with methods to load, parse and transform QTI tests."
552
- }
553
- ],
554
- "exports": [
555
- {
556
- "kind": "js",
557
- "name": "qtiTransformItem",
558
- "declaration": {
559
- "name": "qtiTransformItem",
560
- "module": "src/lib/qti-transformers/qti-transformers.ts"
561
- }
562
- },
563
- {
564
- "kind": "js",
565
- "name": "qtiTransformTest",
566
- "declaration": {
567
- "name": "qtiTransformTest",
568
- "module": "src/lib/qti-transformers/qti-transformers.ts"
569
- }
570
- }
571
- ]
572
- },
573
573
  {
574
574
  "kind": "javascript-module",
575
575
  "path": "src/lib/qti-components/internal/event-types.ts",