@appquality/unguess-design-system 4.1.2 → 4.1.4
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 +30 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +8841 -8828
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
# v4.1.4 (Tue Jul 28 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Improved cutter button video player [#603](https://github.com/AppQuality/unguess-design-system/pull/603) ([@sinatragianpaolo](https://github.com/sinatragianpaolo) [@marcbon](https://github.com/marcbon))
|
|
6
|
+
- fix(player): unify observations tooltip and disable shortcut when Cutter is disabled [#602](https://github.com/AppQuality/unguess-design-system/pull/602) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
11
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# v4.1.3 (Mon Jul 27 2026)
|
|
16
|
+
|
|
17
|
+
#### 🐛 Bug Fix
|
|
18
|
+
|
|
19
|
+
- Improved observation button for video player [#601](https://github.com/AppQuality/unguess-design-system/pull/601) ([@sinatragianpaolo](https://github.com/sinatragianpaolo) [@marcbon](https://github.com/marcbon))
|
|
20
|
+
- feat(player): add disable and tooltip support to Cutter button [#599](https://github.com/AppQuality/unguess-design-system/pull/599) ([@marcbon](https://github.com/marcbon) [@github-actions[bot]](https://github.com/github-actions[bot]) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
21
|
+
- Cutter-props-v2 [#600](https://github.com/AppQuality/unguess-design-system/pull/600) ([@marcbon](https://github.com/marcbon))
|
|
22
|
+
|
|
23
|
+
#### Authors: 3
|
|
24
|
+
|
|
25
|
+
- [@github-actions[bot]](https://github.com/github-actions[bot])
|
|
26
|
+
- Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
27
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
1
31
|
# v4.1.1 (Mon Jun 15 2026)
|
|
2
32
|
|
|
3
33
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -2110,6 +2110,7 @@ declare interface PlayerArgs extends HTMLAttributes<HTMLVideoElement> {
|
|
|
2110
2110
|
i18n?: PlayerI18n;
|
|
2111
2111
|
showControls?: boolean;
|
|
2112
2112
|
onShortcut?: (type: string) => void;
|
|
2113
|
+
disableCutter?: boolean;
|
|
2113
2114
|
}
|
|
2114
2115
|
|
|
2115
2116
|
declare interface PlayerI18n {
|
|
@@ -2118,6 +2119,7 @@ declare interface PlayerI18n {
|
|
|
2118
2119
|
playpause?: string;
|
|
2119
2120
|
mute?: string;
|
|
2120
2121
|
observations?: string;
|
|
2122
|
+
observationsDisable?: string;
|
|
2121
2123
|
forward?: string;
|
|
2122
2124
|
backward?: string;
|
|
2123
2125
|
}
|