@appquality/unguess-design-system 4.0.6 → 4.0.8

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
@@ -1,3 +1,36 @@
1
+ # v4.0.8 (Mon Nov 11 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Add onShortcut event to player component [#440](https://github.com/AppQuality/unguess-design-system/pull/440) ([@d-beezee](https://github.com/d-beezee) [@cannarocks](https://github.com/cannarocks))
6
+ - feat: add onShortcut prop to PlayerArgs to intercept events [#438](https://github.com/AppQuality/unguess-design-system/pull/438) ([@d-beezee](https://github.com/d-beezee))
7
+
8
+ #### Authors: 2
9
+
10
+ - [@d-beezee](https://github.com/d-beezee)
11
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
12
+
13
+ ---
14
+
15
+ # v4.0.7 (Thu Nov 07 2024)
16
+
17
+ #### 🐛 Bug Fix
18
+
19
+ - Player improvements [#437](https://github.com/AppQuality/unguess-design-system/pull/437) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks) [@iacopolea](https://github.com/iacopolea) [@d-beezee](https://github.com/d-beezee))
20
+ - Un 286 - Added keyboard shortcut [#436](https://github.com/AppQuality/unguess-design-system/pull/436) ([@iacopolea](https://github.com/iacopolea) [@Kariamos](https://github.com/Kariamos))
21
+ - docs: Add autodocs [#435](https://github.com/AppQuality/unguess-design-system/pull/435) ([@d-beezee](https://github.com/d-beezee))
22
+ - Feat: Remove unused size prop in CutterButton component [#434](https://github.com/AppQuality/unguess-design-system/pull/434) ([@iDome89](https://github.com/iDome89))
23
+
24
+ #### Authors: 5
25
+
26
+ - [@d-beezee](https://github.com/d-beezee)
27
+ - [@iDome89](https://github.com/iDome89)
28
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
29
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
30
+ - Marco ([@Kariamos](https://github.com/Kariamos))
31
+
32
+ ---
33
+
1
34
  # v4.0.6 (Thu Oct 24 2024)
2
35
 
3
36
  #### 🐛 Bug Fix
package/build/index.d.ts CHANGED
@@ -6726,6 +6726,7 @@ declare interface PlayerArgs extends HTMLAttributes<HTMLVideoElement> {
6726
6726
  handleBookmarkUpdate?: (bookmark: IBookmark) => void;
6727
6727
  i18n?: PlayerI18n;
6728
6728
  showControls?: boolean;
6729
+ onShortcut?: (type: string) => void;
6729
6730
  }
6730
6731
 
6731
6732
  declare interface PlayerI18n {