@appquality/unguess-design-system 4.0.71 → 4.1.0
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 +28 -0
- package/build/index.d.ts +3 -0
- package/build/index.js +13472 -13489
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
# v4.1.0 (Wed May 13 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Enhance Observation model with creatorType and end attributes [#595](https://github.com/AppQuality/unguess-design-system/pull/595) ([@iacopolea](https://github.com/iacopolea))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- new release [#596](https://github.com/AppQuality/unguess-design-system/pull/596) ([@iacopolea](https://github.com/iacopolea))
|
|
10
|
+
|
|
11
|
+
#### Authors: 1
|
|
12
|
+
|
|
13
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# v4.0.72 (Wed May 06 2026)
|
|
18
|
+
|
|
19
|
+
#### 🐛 Bug Fix
|
|
20
|
+
|
|
21
|
+
- fix: update downshift version and add overrides in package.json [#594](https://github.com/AppQuality/unguess-design-system/pull/594) ([@d-beezee](https://github.com/d-beezee))
|
|
22
|
+
|
|
23
|
+
#### Authors: 1
|
|
24
|
+
|
|
25
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
1
29
|
# v4.0.71 (Wed Apr 22 2026)
|
|
2
30
|
|
|
3
31
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -934,6 +934,8 @@ declare const DefaultObservationWrapper: ({ title, color, children, observations
|
|
|
934
934
|
id: number;
|
|
935
935
|
title: string;
|
|
936
936
|
color: string;
|
|
937
|
+
creatorType?: "human" | "ai";
|
|
938
|
+
end?: number;
|
|
937
939
|
}[];
|
|
938
940
|
}) => JSX_2.Element;
|
|
939
941
|
|
|
@@ -1864,6 +1866,7 @@ declare type ObservationType = {
|
|
|
1864
1866
|
end: number;
|
|
1865
1867
|
text: string;
|
|
1866
1868
|
color?: `#${string}`;
|
|
1869
|
+
creatorType?: "human" | "ai";
|
|
1867
1870
|
};
|
|
1868
1871
|
|
|
1869
1872
|
export declare interface OnOptionClickArgs {
|