@appquality/unguess-design-system 3.1.98-beta-attachments → 3.1.98-test-error-management
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 +307 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +1005 -625
- package/build/stories/chat/_types.d.ts +8 -6
- package/build/stories/chat/context/chatContext.d.ts +4 -4
- package/build/stories/chat/hooks/useMedia.d.ts +8 -0
- package/build/stories/chat/index.stories.d.ts +3 -4
- package/build/stories/chat/parts/MediaLightbox.d.ts +14 -0
- package/build/stories/chat/parts/ThumbnailContainer/Thumbnail.d.ts +11 -0
- package/build/stories/chat/parts/ThumbnailContainer/index.d.ts +1 -9
- package/build/stories/chat/parts/comment.d.ts +2 -7
- package/build/stories/highlight/_types.d.ts +36 -0
- package/build/stories/highlight/demo-parts/data.d.ts +55 -0
- package/build/stories/highlight/demo-parts/sentiment-tag.d.ts +7 -0
- package/build/stories/highlight/demo-parts/transcript-base.d.ts +5 -0
- package/build/stories/highlight/demo-parts/transcript-diarization.d.ts +5 -0
- package/build/stories/highlight/demo-parts/transcript-paragraph.d.ts +5 -0
- package/build/stories/highlight/demo-parts/transcript-sentiment.d.ts +5 -0
- package/build/stories/highlight/highlightContext.d.ts +10 -0
- package/build/stories/highlight/index.d.ts +10 -0
- package/build/stories/highlight/index.stories.d.ts +18 -0
- package/build/stories/highlight/searchable.d.ts +3 -0
- package/build/stories/player/_types.d.ts +34 -1
- package/build/stories/player/context/progressContext.d.ts +16 -0
- package/build/stories/player/index.stories.d.ts +1 -1
- package/build/stories/player/parts/bookmark.d.ts +2 -0
- package/build/stories/player/parts/controlButton.d.ts +289 -0
- package/build/stories/player/parts/controls.d.ts +7 -2
- package/build/stories/player/parts/controlsCenterGroup.d.ts +2 -1
- package/build/stories/player/parts/cutterButton.d.ts +6 -0
- package/build/stories/player/parts/progress.d.ts +11 -0
- package/build/stories/player/parts/timeLabel.d.ts +2 -2
- package/build/stories/tooltip/_types.d.ts +1 -0
- package/build/stories/tooltip/index.d.ts +1 -0
- package/build/stories/tooltip/index.stories.d.ts +1 -0
- package/package.json +2 -1
- package/yarn-error.log +17994 -0
- package/build/stories/chat/parts/ThumbnailContainer/ImageThumbnail.d.ts +0 -11
- package/build/stories/chat/parts/ThumbnailContainer/VideoThumbnail.d.ts +0 -11
- /package/build/stories/player/{parts/utils.d.ts → utils.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,310 @@
|
|
|
1
|
+
# v3.1.91 (Fri May 17 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- new feat media attachments [#350](https://github.com/AppQuality/unguess-design-system/pull/350) ([@iacopolea](https://github.com/iacopolea) [@Kariamos](https://github.com/Kariamos))
|
|
6
|
+
- Fix attachments [#348](https://github.com/AppQuality/unguess-design-system/pull/348) ([@iacopolea](https://github.com/iacopolea) [@Kariamos](https://github.com/Kariamos))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
11
|
+
- Marco ([@Kariamos](https://github.com/Kariamos))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# v3.1.90 (Thu May 16 2024)
|
|
16
|
+
|
|
17
|
+
#### 🐛 Bug Fix
|
|
18
|
+
|
|
19
|
+
- refactor: Update player background color in Container component [#349](https://github.com/AppQuality/unguess-design-system/pull/349) ([@cannarocks](https://github.com/cannarocks))
|
|
20
|
+
|
|
21
|
+
#### Authors: 1
|
|
22
|
+
|
|
23
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# v3.1.89 (Thu May 16 2024)
|
|
28
|
+
|
|
29
|
+
#### 🐛 Bug Fix
|
|
30
|
+
|
|
31
|
+
- Add tooltip to highlights and a brighter new player [#347](https://github.com/AppQuality/unguess-design-system/pull/347) ([@cannarocks](https://github.com/cannarocks))
|
|
32
|
+
- "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))
|
|
33
|
+
- "Update player controls and refactor styling" [#346](https://github.com/AppQuality/unguess-design-system/pull/346) ([@cannarocks](https://github.com/cannarocks))
|
|
34
|
+
- Demo [#344](https://github.com/AppQuality/unguess-design-system/pull/344) ([@cannarocks](https://github.com/cannarocks))
|
|
35
|
+
|
|
36
|
+
#### Authors: 1
|
|
37
|
+
|
|
38
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
# v3.1.88 (Mon May 13 2024)
|
|
43
|
+
|
|
44
|
+
#### 🐛 Bug Fix
|
|
45
|
+
|
|
46
|
+
- Player fixes [#343](https://github.com/AppQuality/unguess-design-system/pull/343) ([@cannarocks](https://github.com/cannarocks))
|
|
47
|
+
- Fix undefined state in player and reduce renders [#342](https://github.com/AppQuality/unguess-design-system/pull/342) ([@cannarocks](https://github.com/cannarocks))
|
|
48
|
+
|
|
49
|
+
#### Authors: 1
|
|
50
|
+
|
|
51
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
# v3.1.87 (Mon May 13 2024)
|
|
56
|
+
|
|
57
|
+
#### 🐛 Bug Fix
|
|
58
|
+
|
|
59
|
+
- 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))
|
|
60
|
+
- fix: package version [#341](https://github.com/AppQuality/unguess-design-system/pull/341) ([@iacopolea](https://github.com/iacopolea))
|
|
61
|
+
- 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))
|
|
62
|
+
- Thumbnails container [#328](https://github.com/AppQuality/unguess-design-system/pull/328) ([@sinatragianpaolo](https://github.com/sinatragianpaolo) [@Kariamos](https://github.com/Kariamos))
|
|
63
|
+
- 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))
|
|
64
|
+
|
|
65
|
+
#### Authors: 4
|
|
66
|
+
|
|
67
|
+
- Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
68
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
69
|
+
- Marco ([@Kariamos](https://github.com/Kariamos))
|
|
70
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
# v3.1.82 (Mon May 13 2024)
|
|
75
|
+
|
|
76
|
+
#### 🐛 Bug Fix
|
|
77
|
+
|
|
78
|
+
- 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))
|
|
79
|
+
- Update-controls-layout [#338](https://github.com/AppQuality/unguess-design-system/pull/338) ([@cannarocks](https://github.com/cannarocks))
|
|
80
|
+
- fixed obs breaking text [#334](https://github.com/AppQuality/unguess-design-system/pull/334) ([@iDome89](https://github.com/iDome89))
|
|
81
|
+
- removed ; from component tree [#337](https://github.com/AppQuality/unguess-design-system/pull/337) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
82
|
+
- Player controls updated [#336](https://github.com/AppQuality/unguess-design-system/pull/336) ([@cannarocks](https://github.com/cannarocks))
|
|
83
|
+
- Improve-player-bookmarks-usability [#335](https://github.com/AppQuality/unguess-design-system/pull/335) ([@cannarocks](https://github.com/cannarocks))
|
|
84
|
+
|
|
85
|
+
#### ⚠️ Pushed to `master`
|
|
86
|
+
|
|
87
|
+
- 3.1.85 ([@cannarocks](https://github.com/cannarocks))
|
|
88
|
+
- 3.1.84 ([@cannarocks](https://github.com/cannarocks))
|
|
89
|
+
|
|
90
|
+
#### Authors: 2
|
|
91
|
+
|
|
92
|
+
- [@iDome89](https://github.com/iDome89)
|
|
93
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
# v3.1.82 (Mon May 13 2024)
|
|
98
|
+
|
|
99
|
+
#### 🐛 Bug Fix
|
|
100
|
+
|
|
101
|
+
- 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))
|
|
102
|
+
- Update-controls-layout [#338](https://github.com/AppQuality/unguess-design-system/pull/338) ([@cannarocks](https://github.com/cannarocks))
|
|
103
|
+
- fixed obs breaking text [#334](https://github.com/AppQuality/unguess-design-system/pull/334) ([@iDome89](https://github.com/iDome89))
|
|
104
|
+
- removed ; from component tree [#337](https://github.com/AppQuality/unguess-design-system/pull/337) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
105
|
+
- Player controls updated [#336](https://github.com/AppQuality/unguess-design-system/pull/336) ([@cannarocks](https://github.com/cannarocks))
|
|
106
|
+
- Improve-player-bookmarks-usability [#335](https://github.com/AppQuality/unguess-design-system/pull/335) ([@cannarocks](https://github.com/cannarocks))
|
|
107
|
+
|
|
108
|
+
#### Authors: 2
|
|
109
|
+
|
|
110
|
+
- [@iDome89](https://github.com/iDome89)
|
|
111
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
# v3.1.82 (Fri May 10 2024)
|
|
116
|
+
|
|
117
|
+
#### 🐛 Bug Fix
|
|
118
|
+
|
|
119
|
+
- Player controls updated [#336](https://github.com/AppQuality/unguess-design-system/pull/336) ([@cannarocks](https://github.com/cannarocks))
|
|
120
|
+
- Improve-player-bookmarks-usability [#335](https://github.com/AppQuality/unguess-design-system/pull/335) ([@cannarocks](https://github.com/cannarocks))
|
|
121
|
+
|
|
122
|
+
#### Authors: 1
|
|
123
|
+
|
|
124
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
# v3.1.81 (Thu May 09 2024)
|
|
129
|
+
|
|
130
|
+
#### 🐛 Bug Fix
|
|
131
|
+
|
|
132
|
+
- 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))
|
|
133
|
+
- removed border radius from highlighted word [#332](https://github.com/AppQuality/unguess-design-system/pull/332) ([@iDome89](https://github.com/iDome89))
|
|
134
|
+
- fixees for searched term and break word [#330](https://github.com/AppQuality/unguess-design-system/pull/330) ([@iDome89](https://github.com/iDome89))
|
|
135
|
+
|
|
136
|
+
#### Authors: 2
|
|
137
|
+
|
|
138
|
+
- [@iDome89](https://github.com/iDome89)
|
|
139
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
# v3.1.80 (Tue May 07 2024)
|
|
144
|
+
|
|
145
|
+
#### 🐛 Bug Fix
|
|
146
|
+
|
|
147
|
+
- Allow search in trascript [#326](https://github.com/AppQuality/unguess-design-system/pull/326) ([@cannarocks](https://github.com/cannarocks))
|
|
148
|
+
- feat: Add search functionality to highlight component [#325](https://github.com/AppQuality/unguess-design-system/pull/325) ([@cannarocks](https://github.com/cannarocks))
|
|
149
|
+
|
|
150
|
+
#### Authors: 1
|
|
151
|
+
|
|
152
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
# v3.1.79 (Mon May 06 2024)
|
|
157
|
+
|
|
158
|
+
#### 🐛 Bug Fix
|
|
159
|
+
|
|
160
|
+
- release 20240506 [#324](https://github.com/AppQuality/unguess-design-system/pull/324) ([@cannarocks](https://github.com/cannarocks) [@marcbon](https://github.com/marcbon))
|
|
161
|
+
- Add resizeble observation in player progress [#323](https://github.com/AppQuality/unguess-design-system/pull/323) ([@cannarocks](https://github.com/cannarocks))
|
|
162
|
+
- Add-cutting-edge-functionalities-to-player [#322](https://github.com/AppQuality/unguess-design-system/pull/322) ([@cannarocks](https://github.com/cannarocks))
|
|
163
|
+
- Add Highlight component [#321](https://github.com/AppQuality/unguess-design-system/pull/321) ([@cannarocks](https://github.com/cannarocks) [@marcbon](https://github.com/marcbon))
|
|
164
|
+
|
|
165
|
+
#### Authors: 2
|
|
166
|
+
|
|
167
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
168
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
# v3.1.77 (Mon Feb 26 2024)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
# v3.1.77 (Mon Feb 26 2024)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
# v3.1.76 (Thu Feb 22 2024)
|
|
185
|
+
|
|
186
|
+
#### 🐛 Bug Fix
|
|
187
|
+
|
|
188
|
+
- profile modal fixes [#319](https://github.com/AppQuality/unguess-design-system/pull/319) ([@iDome89](https://github.com/iDome89) [@marcbon](https://github.com/marcbon))
|
|
189
|
+
- fixed title translation [#318](https://github.com/AppQuality/unguess-design-system/pull/318) ([@iDome89](https://github.com/iDome89))
|
|
190
|
+
|
|
191
|
+
#### Authors: 2
|
|
192
|
+
|
|
193
|
+
- [@iDome89](https://github.com/iDome89)
|
|
194
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
# v3.1.73 (Wed Feb 21 2024)
|
|
199
|
+
|
|
200
|
+
#### 🐛 Bug Fix
|
|
201
|
+
|
|
202
|
+
- profile modal [#317](https://github.com/AppQuality/unguess-design-system/pull/317) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
|
|
203
|
+
- Profile modal notifications [#316](https://github.com/AppQuality/unguess-design-system/pull/316) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
|
|
204
|
+
|
|
205
|
+
#### Authors: 2
|
|
206
|
+
|
|
207
|
+
- [@iDome89](https://github.com/iDome89)
|
|
208
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
# v3.1.73 (Wed Feb 21 2024)
|
|
213
|
+
|
|
214
|
+
#### 🐛 Bug Fix
|
|
215
|
+
|
|
216
|
+
- profile modal [#317](https://github.com/AppQuality/unguess-design-system/pull/317) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
|
|
217
|
+
- Profile modal notifications [#316](https://github.com/AppQuality/unguess-design-system/pull/316) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
|
|
218
|
+
|
|
219
|
+
#### Authors: 2
|
|
220
|
+
|
|
221
|
+
- [@iDome89](https://github.com/iDome89)
|
|
222
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
# v3.1.73 (Wed Feb 21 2024)
|
|
227
|
+
|
|
228
|
+
#### 🐛 Bug Fix
|
|
229
|
+
|
|
230
|
+
- profile modal [#317](https://github.com/AppQuality/unguess-design-system/pull/317) ([@marcbon](https://github.com/marcbon) [@iDome89](https://github.com/iDome89))
|
|
231
|
+
- Profile modal notifications [#316](https://github.com/AppQuality/unguess-design-system/pull/316) ([@marcbon](https://github.com/marcbon) [@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.72 (Wed Feb 07 2024)
|
|
241
|
+
|
|
242
|
+
#### 🐛 Bug Fix
|
|
243
|
+
|
|
244
|
+
- Update stream player [#315](https://github.com/AppQuality/unguess-design-system/pull/315) ([@d-beezee](https://github.com/d-beezee))
|
|
245
|
+
- chore: Update stream player [#314](https://github.com/AppQuality/unguess-design-system/pull/314) ([@d-beezee](https://github.com/d-beezee))
|
|
246
|
+
|
|
247
|
+
#### Authors: 1
|
|
248
|
+
|
|
249
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
# v3.1.71 (Mon Jan 29 2024)
|
|
254
|
+
|
|
255
|
+
#### 🐛 Bug Fix
|
|
256
|
+
|
|
257
|
+
- UI fixes pre release [#313](https://github.com/AppQuality/unguess-design-system/pull/313) ([@marcbon](https://github.com/marcbon))
|
|
258
|
+
- Fixes-pre-release [#312](https://github.com/AppQuality/unguess-design-system/pull/312) ([@marcbon](https://github.com/marcbon))
|
|
259
|
+
|
|
260
|
+
#### Authors: 1
|
|
261
|
+
|
|
262
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
# v3.1.70 (Fri Jan 26 2024)
|
|
267
|
+
|
|
268
|
+
#### 🐛 Bug Fix
|
|
269
|
+
|
|
270
|
+
- 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))
|
|
271
|
+
- 🐛 fix(chat): remove unnecessary text in chat message [#310](https://github.com/AppQuality/unguess-design-system/pull/310) ([@marcbon](https://github.com/marcbon))
|
|
272
|
+
|
|
273
|
+
#### Authors: 2
|
|
274
|
+
|
|
275
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
276
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
# v3.1.69 (Fri Jan 26 2024)
|
|
281
|
+
|
|
282
|
+
#### 🐛 Bug Fix
|
|
283
|
+
|
|
284
|
+
- Chat fixes [#309](https://github.com/AppQuality/unguess-design-system/pull/309) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
285
|
+
- Fix-chat-floating-menu-crash [#308](https://github.com/AppQuality/unguess-design-system/pull/308) ([@marcbon](https://github.com/marcbon))
|
|
286
|
+
|
|
287
|
+
#### Authors: 2
|
|
288
|
+
|
|
289
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
290
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
291
|
+
|
|
292
|
+
---
|
|
293
|
+
|
|
294
|
+
# v3.1.68 (Wed Jan 24 2024)
|
|
295
|
+
|
|
296
|
+
#### 🐛 Bug Fix
|
|
297
|
+
|
|
298
|
+
- Add email to mentionList ✨ [#307](https://github.com/AppQuality/unguess-design-system/pull/307) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
299
|
+
- fix: added email to mention [#306](https://github.com/AppQuality/unguess-design-system/pull/306) ([@iDome89](https://github.com/iDome89))
|
|
300
|
+
|
|
301
|
+
#### Authors: 2
|
|
302
|
+
|
|
303
|
+
- [@iDome89](https://github.com/iDome89)
|
|
304
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
305
|
+
|
|
306
|
+
---
|
|
307
|
+
|
|
1
308
|
# v3.1.67 (Wed Jan 24 2024)
|
|
2
309
|
|
|
3
310
|
#### 🐛 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";
|