@playkit-js/playkit-js-downloads 1.4.12 → 1.5.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.
- package/CHANGELOG.md +7 -0
- package/demo/index.html +1 -0
- package/dist/playkit-downloads.js +1 -1
- package/dist/playkit-downloads.js.map +1 -1
- package/package.json +1 -1
- package/src/components/download-item/download-item.tsx +8 -0
- package/src/components/download-overlay/download-overlay.tsx +13 -0
- package/src/components/summary-chapters-list/index.ts +2 -0
- package/src/components/summary-chapters-list/summary-chapters-list.scss +15 -0
- package/src/components/summary-chapters-list/summary-chapters-list.tsx +39 -0
- package/src/consts/asset-type.ts +2 -1
- package/src/download-plugin-manager.tsx +9 -0
- package/src/download.tsx +4 -0
- package/src/event/download-event.d.ts +1 -0
- package/src/event/download-event.js +2 -1
- package/translations/en.i18n.json +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
## 1.5.0 (2026-05-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **CR-616:** Download S&C PDF from download plugin ([#98](https://github.com/kaltura/playkit-js-downloads/issues/98)) ([eb0e80d](https://github.com/kaltura/playkit-js-downloads/commit/eb0e80dd7710da500afab1b5647eb0f0c9731789)), closes [kaltura/playkit-js-unisphere#31](https://github.com/kaltura/playkit-js-unisphere/issues/31) [kaltura/unisphere-video-summary#110](https://github.com/kaltura/unisphere-video-summary/issues/110)
|
|
11
|
+
|
|
5
12
|
### 1.4.12 (2026-05-07)
|
|
6
13
|
|
|
7
14
|
### 1.4.11 (2026-03-26)
|
package/demo/index.html
CHANGED
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
download_button_label_video: 'Click to download the video',
|
|
50
50
|
download_button_label_captions: 'Click to download the captions',
|
|
51
51
|
download_button_label_attachment: 'Click to download the attachment',
|
|
52
|
+
download_button_label_summary_chapters: 'Click to download the summary and chapters',
|
|
52
53
|
select_quality_label: 'Select quality',
|
|
53
54
|
hide_label: 'Hide',
|
|
54
55
|
source_label: 'Source',
|