@appquality/unguess-design-system 4.1.2 → 4.1.3
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 +16 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +12118 -12112
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# v4.1.3 (Mon Jul 27 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- 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))
|
|
6
|
+
- 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))
|
|
7
|
+
- Cutter-props-v2 [#600](https://github.com/AppQuality/unguess-design-system/pull/600) ([@marcbon](https://github.com/marcbon))
|
|
8
|
+
|
|
9
|
+
#### Authors: 3
|
|
10
|
+
|
|
11
|
+
- [@github-actions[bot]](https://github.com/github-actions[bot])
|
|
12
|
+
- Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
13
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
1
17
|
# v4.1.1 (Mon Jun 15 2026)
|
|
2
18
|
|
|
3
19
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -2110,6 +2110,8 @@ declare interface PlayerArgs extends HTMLAttributes<HTMLVideoElement> {
|
|
|
2110
2110
|
i18n?: PlayerI18n;
|
|
2111
2111
|
showControls?: boolean;
|
|
2112
2112
|
onShortcut?: (type: string) => void;
|
|
2113
|
+
disableCutter?: boolean;
|
|
2114
|
+
cutterTooltipText?: string;
|
|
2113
2115
|
}
|
|
2114
2116
|
|
|
2115
2117
|
declare interface PlayerI18n {
|