@appquality/unguess-design-system 4.0.62 → 4.0.64

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,30 @@
1
+ # v4.0.64 (Thu Feb 12 2026)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Fix autocomplete validation [#579](https://github.com/AppQuality/unguess-design-system/pull/579) ([@cannarocks](https://github.com/cannarocks))
6
+ - Improve regex handling for input validation in Autocomplete component [#578](https://github.com/AppQuality/unguess-design-system/pull/578) ([@cannarocks](https://github.com/cannarocks))
7
+
8
+ #### Authors: 1
9
+
10
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
11
+
12
+ ---
13
+
14
+ # v4.0.63 (Mon Jan 19 2026)
15
+
16
+ #### 🐛 Bug Fix
17
+
18
+ - 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))
19
+ - 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))
20
+
21
+ #### Authors: 2
22
+
23
+ - [@d-beezee](https://github.com/d-beezee)
24
+ - Marco ([@Kariamos](https://github.com/Kariamos))
25
+
26
+ ---
27
+
1
28
  # v4.0.62 (Mon Jan 19 2026)
2
29
 
3
30
  #### 🐛 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;