@playkit-js/manual-hotspots 3.3.1-canary.0-7e9f2da
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 +170 -0
- package/LICENSE +661 -0
- package/README.md +180 -0
- package/dist/playkit-manual-hotspots.js +3 -0
- package/dist/playkit-manual-hotspots.js.LICENSE.txt +5 -0
- package/dist/playkit-manual-hotspots.js.map +1 -0
- package/docs/configuration.md +456 -0
- package/package.json +92 -0
- package/src/components/Hotspot.tsx +267 -0
- package/src/components/HotspotWrapper.tsx +115 -0
- package/src/events/events.ts +4 -0
- package/src/global.d.ts +4 -0
- package/src/hotspots-plugin.tsx +180 -0
- package/src/index.ts +15 -0
- package/src/utils/analyticsEvents.ts +3 -0
- package/src/utils/hotspot-config.ts +54 -0
- package/src/utils/hotspot-loader.ts +72 -0
- package/src/utils/hotspot-normalizer.ts +104 -0
- package/src/utils/hotspot-presets.ts +51 -0
- package/src/utils/hotspot-timeline-simple.ts +78 -0
- package/src/utils/hotspot.ts +88 -0
- package/src/utils/scale-video.ts +57 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
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
|
+
|
|
5
|
+
### 3.3.1-canary.0-7e9f2da (2025-12-30)
|
|
6
|
+
|
|
7
|
+
### 3.2.26 (2025-12-18)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **FEC-14689:** Hotspot translations ([#342](https://github.com/kaltura/playkit-js-hotspots/issues/342)) ([4ec8105](https://github.com/kaltura/playkit-js-hotspots/commit/4ec81050f4e961d616d4d08a68e68d8416a074a0))
|
|
13
|
+
|
|
14
|
+
### 3.2.25 (2025-11-27)
|
|
15
|
+
|
|
16
|
+
### 3.2.24 (2025-11-06)
|
|
17
|
+
|
|
18
|
+
### 3.2.23 (2025-11-06)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **ADA-2982:** Make timeout 0 ([#339](https://github.com/kaltura/playkit-js-hotspots/issues/339)) ([00f45fc](https://github.com/kaltura/playkit-js-hotspots/commit/00f45fc5829f2f2ffd3c2e8063b66add01dceadb))
|
|
24
|
+
|
|
25
|
+
### 3.2.22 (2025-10-23)
|
|
26
|
+
|
|
27
|
+
### 3.2.21 (2025-07-17)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* **ADA-2781:** Stop focus jumping on hotspot ([#335](https://github.com/kaltura/playkit-js-hotspots/issues/335)) ([94f783d](https://github.com/kaltura/playkit-js-hotspots/commit/94f783d57ae70e6d15fb354c413535e5161310cf))
|
|
33
|
+
|
|
34
|
+
### 3.2.20 (2025-05-22)
|
|
35
|
+
|
|
36
|
+
### 3.2.19 (2025-04-24)
|
|
37
|
+
|
|
38
|
+
### 3.2.18 (2025-03-20)
|
|
39
|
+
|
|
40
|
+
### 3.2.17 (2025-03-06)
|
|
41
|
+
|
|
42
|
+
### 3.2.16 (2025-01-23)
|
|
43
|
+
|
|
44
|
+
### 3.2.15 (2025-01-09)
|
|
45
|
+
|
|
46
|
+
### 3.2.14 (2024-12-19)
|
|
47
|
+
|
|
48
|
+
### 3.2.13 (2024-12-01)
|
|
49
|
+
|
|
50
|
+
### 3.2.12 (2024-11-14)
|
|
51
|
+
|
|
52
|
+
### 3.2.11 (2024-10-13)
|
|
53
|
+
|
|
54
|
+
### 3.2.10 (2024-10-13)
|
|
55
|
+
|
|
56
|
+
### 3.2.9 (2024-09-19)
|
|
57
|
+
|
|
58
|
+
### 3.2.8 (2024-08-03)
|
|
59
|
+
|
|
60
|
+
### 3.2.7 (2024-06-30)
|
|
61
|
+
|
|
62
|
+
### 3.2.6 (2024-06-16)
|
|
63
|
+
|
|
64
|
+
### 3.2.5 (2024-05-19)
|
|
65
|
+
|
|
66
|
+
### 3.2.4 (2024-05-05)
|
|
67
|
+
|
|
68
|
+
### 3.2.3 (2024-05-02)
|
|
69
|
+
|
|
70
|
+
### 3.2.2 (2024-04-10)
|
|
71
|
+
|
|
72
|
+
### 3.2.1 (2024-04-09)
|
|
73
|
+
|
|
74
|
+
## 3.2.0 (2024-03-31)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Features
|
|
78
|
+
|
|
79
|
+
* **FEC-13561:** Hotspots for simulive ([48305ba](https://github.com/kaltura/playkit-js-hotspots/commit/48305ba24bb608fb218de92ecbad2a28b1dbd679))
|
|
80
|
+
|
|
81
|
+
### 3.1.13 (2024-02-25)
|
|
82
|
+
|
|
83
|
+
### 3.1.12 (2024-02-04)
|
|
84
|
+
|
|
85
|
+
### 3.1.11 (2024-02-01)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Bug Fixes
|
|
89
|
+
|
|
90
|
+
* **FEC-13521:** Add support for mailto: in hotspots ([68815e4](https://github.com/kaltura/playkit-js-hotspots/commit/68815e4405236de80ddaa8dc7e62acf2d47b5e42))
|
|
91
|
+
|
|
92
|
+
### 3.1.10 (2024-01-07)
|
|
93
|
+
|
|
94
|
+
### 3.1.9 (2023-12-21)
|
|
95
|
+
|
|
96
|
+
### 3.1.8 (2023-12-21)
|
|
97
|
+
|
|
98
|
+
### 3.1.7 (2023-09-11)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Bug Fixes
|
|
102
|
+
|
|
103
|
+
* **FEC-13348:** dynamically adjust hotspot text with player size ([#307](https://github.com/kaltura/playkit-js-hotspots/issues/307)) ([c15c705](https://github.com/kaltura/playkit-js-hotspots/commit/c15c70548a71971dc4a166ce225788cab34d88e3))
|
|
104
|
+
|
|
105
|
+
### 3.1.6 (2023-06-07)
|
|
106
|
+
|
|
107
|
+
### [3.1.5](https://github.com/kaltura/playkit-js-hotspots/compare/v3.1.4...v3.1.5) (2023-05-17)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Bug Fixes
|
|
111
|
+
|
|
112
|
+
* **FEC-13145:** upd dependencies + cypress tests ([#300](https://github.com/kaltura/playkit-js-hotspots/issues/300)) ([ef2f812](https://github.com/kaltura/playkit-js-hotspots/commit/ef2f81218dee2bb82dd86ef692209d3d1e1755ab))
|
|
113
|
+
* **FEC-13145:** upgrade dependancies for common and ui-managers etc ([#301](https://github.com/kaltura/playkit-js-hotspots/issues/301)) ([c2142fd](https://github.com/kaltura/playkit-js-hotspots/commit/c2142fdc794159d04f93026015f74e8c400e9599))
|
|
114
|
+
|
|
115
|
+
### [3.1.4](https://github.com/kaltura/playkit-js-hotspots/compare/v3.1.3...v3.1.4) (2023-03-22)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* **FEV-1659:** hotspots starting from 0.00 are hidden ([#296](https://github.com/kaltura/playkit-js-hotspots/issues/296)) ([d02aab4](https://github.com/kaltura/playkit-js-hotspots/commit/d02aab4cc92295b711d1f93e38148ac03010a491))
|
|
121
|
+
|
|
122
|
+
### [3.1.3](https://github.com/kaltura/playkit-js-hotspots/compare/v3.1.2...v3.1.3) (2023-02-23)
|
|
123
|
+
|
|
124
|
+
### [3.1.2](https://github.com/kaltura/playkit-js-hotspots/compare/v3.1.1...v3.1.2) (2023-01-18)
|
|
125
|
+
|
|
126
|
+
### [3.1.1](https://github.com/kaltura/playkit-js-hotspots/compare/v3.1.0...v3.1.1) (2022-12-12)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Bug Fixes
|
|
130
|
+
|
|
131
|
+
* **FEV-1590:** Hotspots are not readable on mac voice over ([#290](https://github.com/kaltura/playkit-js-hotspots/issues/290)) ([da81074](https://github.com/kaltura/playkit-js-hotspots/commit/da81074921fb9b9720d674cf09f298d956df347f))
|
|
132
|
+
* **FEV-1590:** upd dependency ([#292](https://github.com/kaltura/playkit-js-hotspots/issues/292)) ([1ffc378](https://github.com/kaltura/playkit-js-hotspots/commit/1ffc378666ca8f9dfd71bdbcbefc7d115e175984))
|
|
133
|
+
|
|
134
|
+
## [3.1.0](https://github.com/kaltura/playkit-js-hotspots/compare/v2.1.4...v3.1.0) (2022-10-26)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Features
|
|
138
|
+
|
|
139
|
+
* **FEV-1317:** Hotspot plugin - Move contrib kitchen sink to core side panels ([#278](https://github.com/kaltura/playkit-js-hotspots/issues/278)) ([b616a8b](https://github.com/kaltura/playkit-js-hotspots/commit/b616a8ba96f94cc0b83c313e89bad65871e486c3))
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### Bug Fixes
|
|
143
|
+
|
|
144
|
+
* **FEV-1416:** init floating manager ([#279](https://github.com/kaltura/playkit-js-hotspots/issues/279)) ([8b73169](https://github.com/kaltura/playkit-js-hotspots/commit/8b731690023450743c78c38ce923bd6db03f86b6))
|
|
145
|
+
* **FEV-1418:** add plugin dependencies ([#285](https://github.com/kaltura/playkit-js-hotspots/issues/285)) ([6f9ebb9](https://github.com/kaltura/playkit-js-hotspots/commit/6f9ebb9e11b90403e718b1ad44b4b83867a98e83))
|
|
146
|
+
* **FEV-1506:** clean hotspots data on reset; ([#282](https://github.com/kaltura/playkit-js-hotspots/issues/282)) ([d7c4fd4](https://github.com/kaltura/playkit-js-hotspots/commit/d7c4fd4096dc6ef19955d06add3ac35025ec82ab))
|
|
147
|
+
* **FEV-1526:** update hotspots layout ([#284](https://github.com/kaltura/playkit-js-hotspots/issues/284)) ([63dbdd2](https://github.com/kaltura/playkit-js-hotspots/commit/63dbdd24d35c174e9ffde541fac53ccaa568cab1))
|
|
148
|
+
|
|
149
|
+
### [2.1.4](https://github.com/kaltura/playkit-js-hotspots/compare/v2.1.3...v2.1.4) (2022-01-19)
|
|
150
|
+
|
|
151
|
+
### [2.1.3](https://github.com/kaltura/playkit-js-hotspots/compare/v2.1.2...v2.1.3) (2021-11-09)
|
|
152
|
+
|
|
153
|
+
### [2.1.2](https://github.com/kaltura/playkit-js-hotspots/compare/v2.1.1...v2.1.2) (2021-11-09)
|
|
154
|
+
|
|
155
|
+
### [2.1.1](https://github.com/kaltura/playkit-js-hotspots/compare/v2.1.0...v2.1.1) (2021-11-09)
|
|
156
|
+
|
|
157
|
+
### [2.1.0](https://github.com/kaltura/playkit-js-hotspots/compare/v2.0.3...v2.1.0) (2021-01-04)
|
|
158
|
+
|
|
159
|
+
### [2.0.3](https://github.com/kaltura/playkit-js-hotspots/compare/v2.0.2...v2.0.3) (2020-12-07)
|
|
160
|
+
|
|
161
|
+
### [2.0.2](https://github.com/kaltura/playkit-js-hotspots/compare/v2.0.1...v2.0.2) (2020-08-26)
|
|
162
|
+
|
|
163
|
+
### [2.0.1](https://github.com/kaltura/playkit-js-hotspots/compare/v2.0.0...v2.0.1) (2020-05-25)
|
|
164
|
+
|
|
165
|
+
### 0.0.1( (2020-04-13)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Features
|
|
169
|
+
|
|
170
|
+
* add initial plugin repository
|