@appquality/unguess-design-system 4.0.62 → 4.0.63

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.
@@ -15,13 +15,13 @@ jobs:
15
15
  - uses: actions/checkout@v2
16
16
  with:
17
17
  fetch-depth: 0
18
- - name: Use Node.js 18.x
18
+ - name: Use Node.js 24.x
19
19
  uses: actions/setup-node@v2
20
20
  with:
21
- node-version: "18"
21
+ node-version: "24"
22
22
 
23
23
  - name: Build
24
24
  id: build
25
25
  run: |
26
- yarn --frozen-lockfile
27
- yarn run build
26
+ npm ci
27
+ npm run build
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # v4.0.63 (Mon Jan 19 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Add audio player [#576](https://github.com/AppQuality/unguess-design-system/pull/576) ([@Kariamos](https://github.com/Kariamos) [@d-beezee](https://github.com/d-beezee))
6
+ - UN-2222: update player to handle audio files [#567](https://github.com/AppQuality/unguess-design-system/pull/567) ([@Kariamos](https://github.com/Kariamos) [@d-beezee](https://github.com/d-beezee))
7
+
8
+ #### Authors: 2
9
+
10
+ - [@d-beezee](https://github.com/d-beezee)
11
+ - Marco ([@Kariamos](https://github.com/Kariamos))
12
+
13
+ ---
14
+
1
15
  # v4.0.62 (Mon Jan 19 2026)
2
16
 
3
17
  #### 🐛 Bug Fix
package/build/index.d.ts CHANGED
@@ -2025,6 +2025,7 @@ export declare const Player: ForwardRefExoticComponent<PlayerArgs & RefAttribute
2025
2025
 
2026
2026
  declare interface PlayerArgs extends HTMLAttributes<HTMLVideoElement> {
2027
2027
  url: string;
2028
+ playerType?: "video" | "audio";
2028
2029
  start?: number;
2029
2030
  end?: number;
2030
2031
  pipMode?: "auto" | (() => boolean) | boolean;