@appquality/unguess-design-system 3.1.97-beta-attachments → 3.1.97

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +404 -0
  2. package/build/index.d.ts +1 -0
  3. package/build/index.js +967 -594
  4. package/build/stories/buttons/button/index.stories.d.ts +0 -1
  5. package/build/stories/buttons/utils.d.ts +27 -27
  6. package/build/stories/chat/_types.d.ts +6 -4
  7. package/build/stories/chat/context/chatContext.d.ts +4 -4
  8. package/build/stories/chat/hooks/useMedia.d.ts +8 -0
  9. package/build/stories/chat/index.stories.d.ts +3 -5
  10. package/build/stories/chat/parts/MediaLightbox.d.ts +14 -0
  11. package/build/stories/chat/parts/ThumbnailContainer/Thumbnail.d.ts +11 -0
  12. package/build/stories/chat/parts/ThumbnailContainer/index.d.ts +2 -1
  13. package/build/stories/chat/parts/comment.d.ts +2 -7
  14. package/build/stories/dropdowns/select/index.stories.d.ts +0 -1
  15. package/build/stories/editor/index.stories.d.ts +0 -1
  16. package/build/stories/highlight/_types.d.ts +37 -0
  17. package/build/stories/highlight/demo-parts/data.d.ts +55 -0
  18. package/build/stories/highlight/demo-parts/sentiment-tag.d.ts +7 -0
  19. package/build/stories/highlight/demo-parts/transcript-base.d.ts +5 -0
  20. package/build/stories/highlight/demo-parts/transcript-diarization.d.ts +5 -0
  21. package/build/stories/highlight/demo-parts/transcript-paragraph.d.ts +5 -0
  22. package/build/stories/highlight/demo-parts/transcript-sentiment.d.ts +5 -0
  23. package/build/stories/highlight/highlightContext.d.ts +10 -0
  24. package/build/stories/highlight/index.d.ts +10 -0
  25. package/build/stories/highlight/index.stories.d.ts +17 -0
  26. package/build/stories/highlight/searchable.d.ts +3 -0
  27. package/build/stories/player/_types.d.ts +34 -1
  28. package/build/stories/player/context/progressContext.d.ts +16 -0
  29. package/build/stories/player/index.stories.d.ts +1 -2
  30. package/build/stories/player/parts/bookmark.d.ts +2 -0
  31. package/build/stories/player/parts/controlButton.d.ts +289 -0
  32. package/build/stories/player/parts/controls.d.ts +7 -2
  33. package/build/stories/player/parts/controlsCenterGroup.d.ts +2 -1
  34. package/build/stories/player/parts/cutterButton.d.ts +6 -0
  35. package/build/stories/player/parts/progress.d.ts +11 -0
  36. package/build/stories/player/parts/timeLabel.d.ts +2 -2
  37. package/build/stories/tooltip/_types.d.ts +1 -0
  38. package/build/stories/tooltip/index.d.ts +1 -0
  39. package/build/stories/tooltip/index.stories.d.ts +1 -0
  40. package/package.json +2 -1
  41. package/build/stories/chat/parts/ThumbnailContainer/ImageThumbnail.d.ts +0 -11
  42. package/build/stories/chat/parts/ThumbnailContainer/VideoThumbnail.d.ts +0 -11
  43. /package/build/stories/player/{parts/utils.d.ts → utils.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,407 @@
1
+ # v3.1.97 (Tue May 28 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Add highlight support to unselectable [#377](https://github.com/AppQuality/unguess-design-system/pull/377) ([@cannarocks](https://github.com/cannarocks))
6
+ - "Improve styling and functionality for transcript diarization in highlight component" [#376](https://github.com/AppQuality/unguess-design-system/pull/376) ([@cannarocks](https://github.com/cannarocks))
7
+ - Fix obs player [#375](https://github.com/AppQuality/unguess-design-system/pull/375) ([@marcbon](https://github.com/marcbon))
8
+ - 🎨 style(bookmark.tsx): improve styling for active bookmarks in player parts [#374](https://github.com/AppQuality/unguess-design-system/pull/374) ([@marcbon](https://github.com/marcbon))
9
+
10
+ #### Authors: 2
11
+
12
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
13
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
14
+
15
+ ---
16
+
17
+ # v3.1.96 (Mon May 27 2024)
18
+
19
+ #### 🐛 Bug Fix
20
+
21
+ - Tagging tool improvements [#373](https://github.com/AppQuality/unguess-design-system/pull/373) ([@marcbon](https://github.com/marcbon) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
22
+ - 🎨 style(bookmark.tsx): add z-index property to hovered bookmark for better layering [#369](https://github.com/AppQuality/unguess-design-system/pull/369) ([@marcbon](https://github.com/marcbon) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
23
+ - ✨ feat(highlight): add font-weight style to StyledWord in highlight component [#370](https://github.com/AppQuality/unguess-design-system/pull/370) ([@marcbon](https://github.com/marcbon))
24
+ - feat: add random hue to new observation label in index.stories.tsx [#372](https://github.com/AppQuality/unguess-design-system/pull/372) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
25
+ - 🔨 refactor(highlight/index.tsx): improve logic to find closest observation to word [#368](https://github.com/AppQuality/unguess-design-system/pull/368) ([@marcbon](https://github.com/marcbon) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
26
+ - 🔧 fix(player): update end time for second bookmark in index.stories.tsx [#371](https://github.com/AppQuality/unguess-design-system/pull/371) ([@marcbon](https://github.com/marcbon))
27
+
28
+ #### Authors: 2
29
+
30
+ - Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
31
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
32
+
33
+ ---
34
+
35
+ # v3.1.95 (Fri May 24 2024)
36
+
37
+ #### 🐛 Bug Fix
38
+
39
+ - Fix highlight [#367](https://github.com/AppQuality/unguess-design-system/pull/367) ([@marcbon](https://github.com/marcbon))
40
+ - 🔧 refactor(highlight/index.tsx): remove unnecessary spread operator in Word component [#366](https://github.com/AppQuality/unguess-design-system/pull/366) ([@marcbon](https://github.com/marcbon))
41
+
42
+ #### Authors: 1
43
+
44
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
45
+
46
+ ---
47
+
48
+ # v3.1.94 (Tue May 21 2024)
49
+
50
+ #### 🐛 Bug Fix
51
+
52
+ - Fix player types [#365](https://github.com/AppQuality/unguess-design-system/pull/365) ([@marcbon](https://github.com/marcbon))
53
+ - 🔨 refactor(player): make tags property optional in IBookmark interface [#364](https://github.com/AppQuality/unguess-design-system/pull/364) ([@marcbon](https://github.com/marcbon))
54
+ - Update observation severity colors [#363](https://github.com/AppQuality/unguess-design-system/pull/363) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
55
+ - Player-colors [#362](https://github.com/AppQuality/unguess-design-system/pull/362) ([@marcbon](https://github.com/marcbon))
56
+
57
+ #### Authors: 2
58
+
59
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
60
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
61
+
62
+ ---
63
+
64
+ # v3.1.93 (Tue May 21 2024)
65
+
66
+ #### 🐛 Bug Fix
67
+
68
+ - Improve video cutting and add debounce to bookmark update [#361](https://github.com/AppQuality/unguess-design-system/pull/361) ([@cannarocks](https://github.com/cannarocks) [@marcbon](https://github.com/marcbon))
69
+ - Add useDebounce hook for bookmark updates in player controls [#360](https://github.com/AppQuality/unguess-design-system/pull/360) ([@cannarocks](https://github.com/cannarocks))
70
+ - 🚀 feat(player): add PlusIcon component for starting observation in CutterButton [#359](https://github.com/AppQuality/unguess-design-system/pull/359) ([@marcbon](https://github.com/marcbon))
71
+ - Add sentiment data to DemoTranscript [#358](https://github.com/AppQuality/unguess-design-system/pull/358) ([@cannarocks](https://github.com/cannarocks))
72
+
73
+ #### Authors: 2
74
+
75
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
76
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
77
+
78
+ ---
79
+
80
+ # v3.1.92 (Fri May 17 2024)
81
+
82
+ #### 🐛 Bug Fix
83
+
84
+ - Update auto version to 11.x.x [#356](https://github.com/AppQuality/unguess-design-system/pull/356) ([@marcbon](https://github.com/marcbon))
85
+ - ⬆️ chore(package.json): update auto dependency to version 11.1.1 [#355](https://github.com/AppQuality/unguess-design-system/pull/355) ([@marcbon](https://github.com/marcbon))
86
+ - Update auto version [#354](https://github.com/AppQuality/unguess-design-system/pull/354) ([@marcbon](https://github.com/marcbon))
87
+ - ⬆️ chore(package.json): update auto package to version 10.29.2 [#353](https://github.com/AppQuality/unguess-design-system/pull/353) ([@marcbon](https://github.com/marcbon))
88
+ - bookmark-tooltip-fix [#352](https://github.com/AppQuality/unguess-design-system/pull/352) ([@iDome89](https://github.com/iDome89) [@marcbon](https://github.com/marcbon))
89
+ - Bookmark tooltip changes [#351](https://github.com/AppQuality/unguess-design-system/pull/351) ([@iDome89](https://github.com/iDome89))
90
+
91
+ #### Authors: 2
92
+
93
+ - [@iDome89](https://github.com/iDome89)
94
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
95
+
96
+ ---
97
+
98
+ # v3.1.91 (Fri May 17 2024)
99
+
100
+ #### 🐛 Bug Fix
101
+
102
+ - new feat media attachments [#350](https://github.com/AppQuality/unguess-design-system/pull/350) ([@iacopolea](https://github.com/iacopolea) [@Kariamos](https://github.com/Kariamos))
103
+ - Fix attachments [#348](https://github.com/AppQuality/unguess-design-system/pull/348) ([@iacopolea](https://github.com/iacopolea) [@Kariamos](https://github.com/Kariamos))
104
+
105
+ #### Authors: 2
106
+
107
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
108
+ - Marco ([@Kariamos](https://github.com/Kariamos))
109
+
110
+ ---
111
+
112
+ # v3.1.90 (Thu May 16 2024)
113
+
114
+ #### 🐛 Bug Fix
115
+
116
+ - refactor: Update player background color in Container component [#349](https://github.com/AppQuality/unguess-design-system/pull/349) ([@cannarocks](https://github.com/cannarocks))
117
+
118
+ #### Authors: 1
119
+
120
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
121
+
122
+ ---
123
+
124
+ # v3.1.89 (Thu May 16 2024)
125
+
126
+ #### 🐛 Bug Fix
127
+
128
+ - Add tooltip to highlights and a brighter new player [#347](https://github.com/AppQuality/unguess-design-system/pull/347) ([@cannarocks](https://github.com/cannarocks))
129
+ - "Add isTransparent prop to TooltipArgs interface and implement transparent style in Tooltip component" [#345](https://github.com/AppQuality/unguess-design-system/pull/345) ([@cannarocks](https://github.com/cannarocks))
130
+ - "Update player controls and refactor styling" [#346](https://github.com/AppQuality/unguess-design-system/pull/346) ([@cannarocks](https://github.com/cannarocks))
131
+ - Demo [#344](https://github.com/AppQuality/unguess-design-system/pull/344) ([@cannarocks](https://github.com/cannarocks))
132
+
133
+ #### Authors: 1
134
+
135
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
136
+
137
+ ---
138
+
139
+ # v3.1.88 (Mon May 13 2024)
140
+
141
+ #### 🐛 Bug Fix
142
+
143
+ - Player fixes [#343](https://github.com/AppQuality/unguess-design-system/pull/343) ([@cannarocks](https://github.com/cannarocks))
144
+ - Fix undefined state in player and reduce renders [#342](https://github.com/AppQuality/unguess-design-system/pull/342) ([@cannarocks](https://github.com/cannarocks))
145
+
146
+ #### Authors: 1
147
+
148
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
149
+
150
+ ---
151
+
152
+ # v3.1.87 (Mon May 13 2024)
153
+
154
+ #### 🐛 Bug Fix
155
+
156
+ - feat: chat media upload [#340](https://github.com/AppQuality/unguess-design-system/pull/340) ([@Kariamos](https://github.com/Kariamos) [@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
157
+ - fix: package version [#341](https://github.com/AppQuality/unguess-design-system/pull/341) ([@iacopolea](https://github.com/iacopolea))
158
+ - Chat attach media [#320](https://github.com/AppQuality/unguess-design-system/pull/320) ([@Kariamos](https://github.com/Kariamos) [@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
159
+ - Thumbnails container [#328](https://github.com/AppQuality/unguess-design-system/pull/328) ([@sinatragianpaolo](https://github.com/sinatragianpaolo) [@Kariamos](https://github.com/Kariamos))
160
+ - Spinner [#327](https://github.com/AppQuality/unguess-design-system/pull/327) ([@Kariamos](https://github.com/Kariamos) [@iacopolea](https://github.com/iacopolea) [@sinatragianpaolo](https://github.com/sinatragianpaolo))
161
+
162
+ #### Authors: 4
163
+
164
+ - Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
165
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
166
+ - Marco ([@Kariamos](https://github.com/Kariamos))
167
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
168
+
169
+ ---
170
+
171
+ # v3.1.82 (Mon May 13 2024)
172
+
173
+ #### 🐛 Bug Fix
174
+
175
+ - Player improvements and trans fix [#339](https://github.com/AppQuality/unguess-design-system/pull/339) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
176
+ - Update-controls-layout [#338](https://github.com/AppQuality/unguess-design-system/pull/338) ([@cannarocks](https://github.com/cannarocks))
177
+ - fixed obs breaking text [#334](https://github.com/AppQuality/unguess-design-system/pull/334) ([@iDome89](https://github.com/iDome89))
178
+ - removed ; from component tree [#337](https://github.com/AppQuality/unguess-design-system/pull/337) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
179
+ - Player controls updated [#336](https://github.com/AppQuality/unguess-design-system/pull/336) ([@cannarocks](https://github.com/cannarocks))
180
+ - Improve-player-bookmarks-usability [#335](https://github.com/AppQuality/unguess-design-system/pull/335) ([@cannarocks](https://github.com/cannarocks))
181
+
182
+ #### ⚠️ Pushed to `master`
183
+
184
+ - 3.1.85 ([@cannarocks](https://github.com/cannarocks))
185
+ - 3.1.84 ([@cannarocks](https://github.com/cannarocks))
186
+
187
+ #### Authors: 2
188
+
189
+ - [@iDome89](https://github.com/iDome89)
190
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
191
+
192
+ ---
193
+
194
+ # v3.1.82 (Mon May 13 2024)
195
+
196
+ #### 🐛 Bug Fix
197
+
198
+ - Player improvements and trans fix [#339](https://github.com/AppQuality/unguess-design-system/pull/339) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
199
+ - Update-controls-layout [#338](https://github.com/AppQuality/unguess-design-system/pull/338) ([@cannarocks](https://github.com/cannarocks))
200
+ - fixed obs breaking text [#334](https://github.com/AppQuality/unguess-design-system/pull/334) ([@iDome89](https://github.com/iDome89))
201
+ - removed ; from component tree [#337](https://github.com/AppQuality/unguess-design-system/pull/337) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
202
+ - Player controls updated [#336](https://github.com/AppQuality/unguess-design-system/pull/336) ([@cannarocks](https://github.com/cannarocks))
203
+ - Improve-player-bookmarks-usability [#335](https://github.com/AppQuality/unguess-design-system/pull/335) ([@cannarocks](https://github.com/cannarocks))
204
+
205
+ #### Authors: 2
206
+
207
+ - [@iDome89](https://github.com/iDome89)
208
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
209
+
210
+ ---
211
+
212
+ # v3.1.82 (Fri May 10 2024)
213
+
214
+ #### 🐛 Bug Fix
215
+
216
+ - Player controls updated [#336](https://github.com/AppQuality/unguess-design-system/pull/336) ([@cannarocks](https://github.com/cannarocks))
217
+ - Improve-player-bookmarks-usability [#335](https://github.com/AppQuality/unguess-design-system/pull/335) ([@cannarocks](https://github.com/cannarocks))
218
+
219
+ #### Authors: 1
220
+
221
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
222
+
223
+ ---
224
+
225
+ # v3.1.81 (Thu May 09 2024)
226
+
227
+ #### 🐛 Bug Fix
228
+
229
+ - Fix highlight for long selections [#331](https://github.com/AppQuality/unguess-design-system/pull/331) ([@iDome89](https://github.com/iDome89) [@marcbon](https://github.com/marcbon))
230
+ - removed border radius from highlighted word [#332](https://github.com/AppQuality/unguess-design-system/pull/332) ([@iDome89](https://github.com/iDome89))
231
+ - fixees for searched term and break word [#330](https://github.com/AppQuality/unguess-design-system/pull/330) ([@iDome89](https://github.com/iDome89))
232
+
233
+ #### Authors: 2
234
+
235
+ - [@iDome89](https://github.com/iDome89)
236
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
237
+
238
+ ---
239
+
240
+ # v3.1.80 (Tue May 07 2024)
241
+
242
+ #### 🐛 Bug Fix
243
+
244
+ - Allow search in trascript [#326](https://github.com/AppQuality/unguess-design-system/pull/326) ([@cannarocks](https://github.com/cannarocks))
245
+ - feat: Add search functionality to highlight component [#325](https://github.com/AppQuality/unguess-design-system/pull/325) ([@cannarocks](https://github.com/cannarocks))
246
+
247
+ #### Authors: 1
248
+
249
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
250
+
251
+ ---
252
+
253
+ # v3.1.79 (Mon May 06 2024)
254
+
255
+ #### 🐛 Bug Fix
256
+
257
+ - release 20240506 [#324](https://github.com/AppQuality/unguess-design-system/pull/324) ([@cannarocks](https://github.com/cannarocks) [@marcbon](https://github.com/marcbon))
258
+ - Add resizeble observation in player progress [#323](https://github.com/AppQuality/unguess-design-system/pull/323) ([@cannarocks](https://github.com/cannarocks))
259
+ - Add-cutting-edge-functionalities-to-player [#322](https://github.com/AppQuality/unguess-design-system/pull/322) ([@cannarocks](https://github.com/cannarocks))
260
+ - Add Highlight component [#321](https://github.com/AppQuality/unguess-design-system/pull/321) ([@cannarocks](https://github.com/cannarocks) [@marcbon](https://github.com/marcbon))
261
+
262
+ #### Authors: 2
263
+
264
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
265
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
266
+
267
+ ---
268
+
269
+ # v3.1.77 (Mon Feb 26 2024)
270
+
271
+
272
+
273
+ ---
274
+
275
+ # v3.1.77 (Mon Feb 26 2024)
276
+
277
+
278
+
279
+ ---
280
+
281
+ # v3.1.76 (Thu Feb 22 2024)
282
+
283
+ #### 🐛 Bug Fix
284
+
285
+ - profile modal fixes [#319](https://github.com/AppQuality/unguess-design-system/pull/319) ([@iDome89](https://github.com/iDome89) [@marcbon](https://github.com/marcbon))
286
+ - fixed title translation [#318](https://github.com/AppQuality/unguess-design-system/pull/318) ([@iDome89](https://github.com/iDome89))
287
+
288
+ #### Authors: 2
289
+
290
+ - [@iDome89](https://github.com/iDome89)
291
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
292
+
293
+ ---
294
+
295
+ # v3.1.73 (Wed Feb 21 2024)
296
+
297
+ #### 🐛 Bug Fix
298
+
299
+ - profile modal [#317](https://github.com/AppQuality/unguess-design-system/pull/317) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
300
+ - Profile modal notifications [#316](https://github.com/AppQuality/unguess-design-system/pull/316) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
301
+
302
+ #### Authors: 2
303
+
304
+ - [@iDome89](https://github.com/iDome89)
305
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
306
+
307
+ ---
308
+
309
+ # v3.1.73 (Wed Feb 21 2024)
310
+
311
+ #### 🐛 Bug Fix
312
+
313
+ - profile modal [#317](https://github.com/AppQuality/unguess-design-system/pull/317) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
314
+ - Profile modal notifications [#316](https://github.com/AppQuality/unguess-design-system/pull/316) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
315
+
316
+ #### Authors: 2
317
+
318
+ - [@iDome89](https://github.com/iDome89)
319
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
320
+
321
+ ---
322
+
323
+ # v3.1.73 (Wed Feb 21 2024)
324
+
325
+ #### 🐛 Bug Fix
326
+
327
+ - profile modal [#317](https://github.com/AppQuality/unguess-design-system/pull/317) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
328
+ - Profile modal notifications [#316](https://github.com/AppQuality/unguess-design-system/pull/316) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
329
+
330
+ #### Authors: 2
331
+
332
+ - [@iDome89](https://github.com/iDome89)
333
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
334
+
335
+ ---
336
+
337
+ # v3.1.72 (Wed Feb 07 2024)
338
+
339
+ #### 🐛 Bug Fix
340
+
341
+ - Update stream player [#315](https://github.com/AppQuality/unguess-design-system/pull/315) ([@d-beezee](https://github.com/d-beezee))
342
+ - chore: Update stream player [#314](https://github.com/AppQuality/unguess-design-system/pull/314) ([@d-beezee](https://github.com/d-beezee))
343
+
344
+ #### Authors: 1
345
+
346
+ - [@d-beezee](https://github.com/d-beezee)
347
+
348
+ ---
349
+
350
+ # v3.1.71 (Mon Jan 29 2024)
351
+
352
+ #### 🐛 Bug Fix
353
+
354
+ - UI fixes pre release [#313](https://github.com/AppQuality/unguess-design-system/pull/313) ([@marcbon](https://github.com/marcbon))
355
+ - Fixes-pre-release [#312](https://github.com/AppQuality/unguess-design-system/pull/312) ([@marcbon](https://github.com/marcbon))
356
+
357
+ #### Authors: 1
358
+
359
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
360
+
361
+ ---
362
+
363
+ # v3.1.70 (Fri Jan 26 2024)
364
+
365
+ #### 🐛 Bug Fix
366
+
367
+ - Add supports to very long comments [#311](https://github.com/AppQuality/unguess-design-system/pull/311) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
368
+ - 🐛 fix(chat): remove unnecessary text in chat message [#310](https://github.com/AppQuality/unguess-design-system/pull/310) ([@marcbon](https://github.com/marcbon))
369
+
370
+ #### Authors: 2
371
+
372
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
373
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
374
+
375
+ ---
376
+
377
+ # v3.1.69 (Fri Jan 26 2024)
378
+
379
+ #### 🐛 Bug Fix
380
+
381
+ - Chat fixes [#309](https://github.com/AppQuality/unguess-design-system/pull/309) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
382
+ - Fix-chat-floating-menu-crash [#308](https://github.com/AppQuality/unguess-design-system/pull/308) ([@marcbon](https://github.com/marcbon))
383
+
384
+ #### Authors: 2
385
+
386
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
387
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
388
+
389
+ ---
390
+
391
+ # v3.1.68 (Wed Jan 24 2024)
392
+
393
+ #### 🐛 Bug Fix
394
+
395
+ - Add email to mentionList ✨ [#307](https://github.com/AppQuality/unguess-design-system/pull/307) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
396
+ - fix: added email to mention [#306](https://github.com/AppQuality/unguess-design-system/pull/306) ([@iDome89](https://github.com/iDome89))
397
+
398
+ #### Authors: 2
399
+
400
+ - [@iDome89](https://github.com/iDome89)
401
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
402
+
403
+ ---
404
+
1
405
  # v3.1.67 (Wed Jan 24 2024)
2
406
 
3
407
  #### 🐛 Bug Fix
package/build/index.d.ts CHANGED
@@ -47,6 +47,7 @@ export * from "./stories/forms/toggle";
47
47
  export * from "./stories/grid/col";
48
48
  export * from "./stories/grid/row";
49
49
  export * from "./stories/grid/grid";
50
+ export * from "./stories/highlight";
50
51
  export * from "./stories/icons";
51
52
  export * from "./stories/label";
52
53
  export * from "./stories/lightbox";