@appquality/unguess-design-system 3.1.63 → 3.1.65
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 +31 -0
- package/build/index.js +624 -288
- package/build/stories/avatar/_types.d.ts +1 -1
- package/build/stories/avatar/index.d.ts +1 -1
- package/build/stories/avatar/index.stories.d.ts +1 -0
- package/build/stories/chat/_types.d.ts +13 -1
- package/build/stories/chat/context/chatContext.d.ts +9 -6
- package/build/stories/chat/index.d.ts +2 -1
- package/build/stories/chat/index.stories.d.ts +5 -3
- package/build/stories/chat/parts/bar.d.ts +6 -0
- package/build/stories/chat/parts/comment.d.ts +1 -1
- package/build/stories/chat/parts/containers.d.ts +35 -23
- package/build/stories/chat/parts/editorButton.d.ts +5 -0
- package/build/stories/chat/parts/extensions.d.ts +8 -0
- package/build/stories/chat/parts/footer.d.ts +2 -1
- package/build/stories/chat/parts/mention.d.ts +1 -0
- package/build/stories/chat/parts/mentionList.d.ts +9 -0
- package/build/stories/chat/parts/sendShortcut.d.ts +3 -0
- package/build/stories/shared/editorStyle.d.ts +1 -0
- package/package.json +12 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
# v3.1.65 (Fri Jan 19 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add system AvatarType [#298](https://github.com/AppQuality/unguess-design-system/pull/298) ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
- docs(chat): add example of system avatar [#297](https://github.com/AppQuality/unguess-design-system/pull/297) ([@cannarocks](https://github.com/cannarocks))
|
|
7
|
+
- Chat mentions [#296](https://github.com/AppQuality/unguess-design-system/pull/296) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
8
|
+
- Add-suggestions-to-editor [#295](https://github.com/AppQuality/unguess-design-system/pull/295) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
9
|
+
|
|
10
|
+
#### Authors: 3
|
|
11
|
+
|
|
12
|
+
- [@iDome89](https://github.com/iDome89)
|
|
13
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
14
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# v3.1.64 (Mon Jan 08 2024)
|
|
19
|
+
|
|
20
|
+
#### 🐛 Bug Fix
|
|
21
|
+
|
|
22
|
+
- Chat colors minor changes [#293](https://github.com/AppQuality/unguess-design-system/pull/293) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
23
|
+
- Chat box border fix [#292](https://github.com/AppQuality/unguess-design-system/pull/292) ([@cannarocks](https://github.com/cannarocks) [@iDome89](https://github.com/iDome89))
|
|
24
|
+
|
|
25
|
+
#### Authors: 2
|
|
26
|
+
|
|
27
|
+
- [@iDome89](https://github.com/iDome89)
|
|
28
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
1
32
|
# v3.1.63 (Thu Jan 04 2024)
|
|
2
33
|
|
|
3
34
|
#### 🐛 Bug Fix
|