@playkit-js/playkit-js-ivq 3.6.0-canary.0-16adfe9 → 3.6.0-canary.0-4b28821

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/CHANGELOG.md CHANGED
@@ -2,12 +2,108 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- ## 3.6.0-canary.0-16adfe9 (2024-03-18)
5
+ ## 3.6.0-canary.0-4b28821 (2024-11-20)
6
6
 
7
7
 
8
8
  ### Features
9
9
 
10
- * **FEC-13718:** [Quiz Plugin]: Add Events (used by kava analytics) ([#121](https://github.com/kaltura/playkit-js-ivq/issues/121)) ([16adfe9](https://github.com/kaltura/playkit-js-ivq/commit/16adfe9))
10
+ * **FEC-14234:** quiz preview fixes ([#142](https://github.com/kaltura/playkit-js-ivq/issues/142)) ([4b28821](https://github.com/kaltura/playkit-js-ivq/commit/4b28821))
11
+
12
+
13
+
14
+ ### 3.5.22 (2024-11-14)
15
+
16
+
17
+
18
+ ### 3.5.21 (2024-11-01)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **ADA-1778:** [UCB] Incorrect usage of ARIA Listbox for Multiple Choice Questions ([#137](https://github.com/kaltura/playkit-js-ivq/issues/137)) ([00fa591](https://github.com/kaltura/playkit-js-ivq/commit/00fa591))
24
+
25
+
26
+
27
+ ### 3.5.20 (2024-10-13)
28
+
29
+
30
+
31
+ ### 3.5.19 (2024-10-13)
32
+
33
+
34
+
35
+ ### 3.5.18 (2024-09-19)
36
+
37
+
38
+
39
+ ### 3.5.17 (2024-09-05)
40
+
41
+
42
+
43
+ ### 3.5.16 (2024-08-22)
44
+
45
+
46
+
47
+ ### 3.5.15 (2024-08-22)
48
+
49
+
50
+ ### Bug Fixes
51
+
52
+ * **SUP-43316:** support links in IVQ questions ([#131](https://github.com/kaltura/playkit-js-ivq/issues/131)) ([86a8bbc](https://github.com/kaltura/playkit-js-ivq/commit/86a8bbc))
53
+
54
+
55
+
56
+ ### 3.5.14 (2024-08-03)
57
+
58
+
59
+
60
+ ### 3.5.13 (2024-07-11)
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * **FEC-13845:** Add Events (used by kava analytics) | Quiz_skip_question "buttonValue" doesn't show question number. ([#130](https://github.com/kaltura/playkit-js-ivq/issues/130)) ([504507f](https://github.com/kaltura/playkit-js-ivq/commit/504507f))
66
+
67
+
68
+
69
+ ### 3.5.12 (2024-06-30)
70
+
71
+
72
+
73
+ ### 3.5.11 (2024-06-16)
74
+
75
+
76
+
77
+ ### 3.5.10 (2024-05-19)
78
+
79
+
80
+
81
+ ### 3.5.9 (2024-05-05)
82
+
83
+
84
+
85
+ ### 3.5.8 (2024-05-02)
86
+
87
+
88
+
89
+ ### 3.5.7 (2024-04-10)
90
+
91
+
92
+
93
+ ### 3.5.6 (2024-04-09)
94
+
95
+
96
+
97
+ ### 3.5.5 (2024-03-31)
98
+
99
+
100
+
101
+ ### 3.5.4 (2024-03-31)
102
+
103
+
104
+ ### Bug Fixes
105
+
106
+ * **FEC-13781:** add validation to new isPreventSeek state ([#122](https://github.com/kaltura/playkit-js-ivq/issues/122)) ([497af74](https://github.com/kaltura/playkit-js-ivq/commit/497af74))
11
107
 
12
108
 
13
109
 
@@ -191,4 +191,14 @@ describe('IVQ plugin', () => {
191
191
  });
192
192
  });
193
193
  });
194
+
195
+ describe('quiz API', () => {
196
+ it('should expose quiz API ', done => {
197
+ mockKalturaBe();
198
+ loadPlayer().then(player => {
199
+ expect(player.getService('ivq').setQuizAttributes).to.be.a('function');
200
+ done();
201
+ });
202
+ });
203
+ });
194
204
  });