@veritone-ce/design-system 2.8.9 → 2.9.0-next.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.
Files changed (64) hide show
  1. package/CHANGELOG.md +2641 -0
  2. package/dist/cjs/Accordion/Accordion.js +11 -2
  3. package/dist/cjs/Dialog/components.js +29 -90
  4. package/dist/cjs/Dialog/state.js +2 -8
  5. package/dist/cjs/Dialog/styles.module.scss.js +2 -2
  6. package/dist/cjs/FileUploader/controlled.js +7 -0
  7. package/dist/cjs/Table/AutoTable/controlled.js +2 -1
  8. package/dist/cjs/Table/AutoTable/styles.module.scss.js +1 -1
  9. package/dist/cjs/TablePagination/index.js +21 -8
  10. package/dist/cjs/index.js +11 -0
  11. package/dist/cjs/styles/createPalette.js +11 -0
  12. package/dist/cjs/styles/entrypoint.scss.js +7 -0
  13. package/dist/cjs/styles.css +1 -1
  14. package/dist/cjs/unstable/Card/components.js +213 -0
  15. package/dist/cjs/unstable/Card/state.js +53 -0
  16. package/dist/cjs/unstable/Card/styles.module.scss.js +1 -1
  17. package/dist/cjs/unstable/StatCard/index.js +124 -0
  18. package/dist/cjs/unstable/StatCard/index.module.scss.js +7 -0
  19. package/dist/cjs/unstable/index.js +39 -13
  20. package/dist/cjs/unstable/skeleton/index.js +74 -0
  21. package/dist/cjs/unstable/skeleton/index.module.scss.js +7 -0
  22. package/dist/cjs/unstable/suspense/index.js +18 -0
  23. package/dist/cjs/unstable/suspense/index.module.scss.js +7 -0
  24. package/dist/cjs/unstable/suspense/loader.js +23 -0
  25. package/dist/esm/Accordion/Accordion.js +11 -2
  26. package/dist/esm/Dialog/components.js +28 -89
  27. package/dist/esm/Dialog/state.js +2 -8
  28. package/dist/esm/Dialog/styles.module.scss.js +2 -2
  29. package/dist/esm/FileUploader/controlled.js +7 -0
  30. package/dist/esm/Table/AutoTable/controlled.js +2 -1
  31. package/dist/esm/Table/AutoTable/styles.module.scss.js +1 -1
  32. package/dist/esm/TablePagination/index.js +21 -8
  33. package/dist/esm/index.js +1 -1
  34. package/dist/esm/styles/createPalette.js +1 -1
  35. package/dist/esm/styles/entrypoint.scss.js +3 -0
  36. package/dist/esm/styles.css +1 -1
  37. package/dist/esm/unstable/Card/components.js +182 -0
  38. package/dist/esm/unstable/Card/state.js +30 -0
  39. package/dist/esm/unstable/Card/styles.module.scss.js +1 -1
  40. package/dist/esm/unstable/StatCard/index.js +116 -0
  41. package/dist/esm/unstable/StatCard/index.module.scss.js +3 -0
  42. package/dist/esm/unstable/index.js +5 -1
  43. package/dist/esm/unstable/skeleton/index.js +69 -0
  44. package/dist/esm/unstable/skeleton/index.module.scss.js +3 -0
  45. package/dist/esm/unstable/suspense/index.js +15 -0
  46. package/dist/esm/unstable/suspense/index.module.scss.js +3 -0
  47. package/dist/esm/unstable/suspense/loader.js +20 -0
  48. package/dist/types/Accordion/Accordion.d.ts +20 -4
  49. package/dist/types/Dialog/components.d.ts +27 -20
  50. package/dist/types/Dialog/factory.d.ts +4 -5
  51. package/dist/types/Dialog/state.d.ts +1 -15
  52. package/dist/types/TablePagination/index.d.ts +1 -1
  53. package/dist/types/styles/createPalette.d.ts +13 -2
  54. package/dist/types/unstable/Card/components.d.ts +90 -0
  55. package/dist/types/unstable/Card/index.d.ts +2 -11
  56. package/dist/types/unstable/Card/state.d.ts +20 -0
  57. package/dist/types/unstable/StatCard/index.d.ts +33 -0
  58. package/dist/types/unstable/index.d.ts +3 -0
  59. package/dist/types/unstable/skeleton/index.d.ts +15 -0
  60. package/dist/types/unstable/suspense/index.d.ts +9 -0
  61. package/dist/types/unstable/suspense/loader.d.ts +7 -0
  62. package/package.json +1 -7
  63. package/dist/cjs/unstable/Card/index.js +0 -33
  64. package/dist/esm/unstable/Card/index.js +0 -29
package/CHANGELOG.md ADDED
@@ -0,0 +1,2641 @@
1
+ # v2.8.10 (Wed Dec 17 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Update accordion [#284](https://github.com/veritone/design-system/pull/284) ([@MikeJDev](https://github.com/MikeJDev))
6
+
7
+ #### Authors: 1
8
+
9
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
10
+
11
+ ---
12
+
13
+ # v2.8.9 (Mon Dec 15 2025)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - Fix/VE-13209 Add react-dom to externals to resolve rollup build error [#281](https://github.com/veritone/design-system/pull/281) (kmyers@ip-192-168-1-113.us-west-2.compute.internal)
18
+ - Feat/VE-13209 export accordion [#280](https://github.com/veritone/design-system/pull/280) (kmyers@ip-192-168-1-113.us-west-2.compute.internal)
19
+
20
+ #### Authors: 1
21
+
22
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
23
+
24
+ ---
25
+
26
+ # v2.8.8 (Fri Dec 05 2025)
27
+
28
+ #### 🐛 Bug Fix
29
+
30
+ - Add mui maximum behavior. [#279](https://github.com/veritone/design-system/pull/279) ([@eortiz-vt](https://github.com/eortiz-vt) [@MikeJDev](https://github.com/MikeJDev))
31
+
32
+ #### Authors: 2
33
+
34
+ - [@eortiz-vt](https://github.com/eortiz-vt)
35
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
36
+
37
+ ---
38
+
39
+ # v2.8.7 (Fri Dec 05 2025)
40
+
41
+ #### 🐛 Bug Fix
42
+
43
+ - Feat/accordion [#278](https://github.com/veritone/design-system/pull/278) ([@MikeJDev](https://github.com/MikeJDev) [@tboley-vt](https://github.com/tboley-vt))
44
+
45
+ #### Authors: 2
46
+
47
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
48
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
49
+
50
+ ---
51
+
52
+ # v2.8.6 (Tue Sep 30 2025)
53
+
54
+ #### 🐛 Bug Fix
55
+
56
+ - Fix/ve 15517 radio button [#273](https://github.com/veritone/design-system/pull/273) (kmyers@ip-192-168-1-113.us-west-2.compute.internal)
57
+
58
+ #### Authors: 1
59
+
60
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
61
+
62
+ ---
63
+
64
+ # v2.8.5 (Wed Sep 24 2025)
65
+
66
+ #### 🐛 Bug Fix
67
+
68
+ - Feat/ve 15168 modify date picker [#272](https://github.com/veritone/design-system/pull/272) (jessica@C02G20X4MD6W.local)
69
+
70
+ #### Authors: 1
71
+
72
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
73
+
74
+ ---
75
+
76
+ # v2.8.4 (Thu Aug 21 2025)
77
+
78
+ #### ⚠️ Pushed to `main`
79
+
80
+ - feat: add loading/error fallback options to dialog/drawer helpers ([@tboley-vt](https://github.com/tboley-vt))
81
+
82
+ #### Authors: 1
83
+
84
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
85
+
86
+ ---
87
+
88
+ # v2.8.3 (Tue Aug 19 2025)
89
+
90
+ #### ⚠️ Pushed to `main`
91
+
92
+ - feat: dialog helpers ([@tboley-vt](https://github.com/tboley-vt))
93
+ - feat: remove title from drawer helper, add default close button icon ([@tboley-vt](https://github.com/tboley-vt))
94
+ - fix: form helper uploader single file, select multiple type ([@tboley-vt](https://github.com/tboley-vt))
95
+
96
+ #### Authors: 1
97
+
98
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
99
+
100
+ ---
101
+
102
+ # v2.8.2 (Sun Aug 17 2025)
103
+
104
+ #### ⚠️ Pushed to `main`
105
+
106
+ - fixed uploady export 2 ([@tboley-vt](https://github.com/tboley-vt))
107
+ - fixed uploady export ([@tboley-vt](https://github.com/tboley-vt))
108
+
109
+ #### Authors: 1
110
+
111
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
112
+
113
+ ---
114
+
115
+ # v2.8.1 (Sun Aug 17 2025)
116
+
117
+ #### 🐛 Bug Fix
118
+
119
+ - Fix: Upload list fill container [#270](https://github.com/veritone/design-system/pull/270) ([@tboley-vt](https://github.com/tboley-vt))
120
+
121
+ #### Authors: 1
122
+
123
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
124
+
125
+ ---
126
+
127
+ # v2.8.0 (Sun Aug 17 2025)
128
+
129
+ #### 🚀 Enhancement
130
+
131
+ - Refactored uploady dep out of uploader, added form uploader helpers [#269](https://github.com/veritone/design-system/pull/269) ([@tboley-vt](https://github.com/tboley-vt))
132
+
133
+ #### Authors: 1
134
+
135
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
136
+
137
+ ---
138
+
139
+ # v2.7.6 (Fri Aug 15 2025)
140
+
141
+ #### 🐛 Bug Fix
142
+
143
+ - fix: button visibility [#268](https://github.com/veritone/design-system/pull/268) ([@tboley-vt](https://github.com/tboley-vt))
144
+
145
+ #### Authors: 1
146
+
147
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
148
+
149
+ ---
150
+
151
+ # v2.7.5 (Thu Aug 14 2025)
152
+
153
+ #### ⚠️ Pushed to `main`
154
+
155
+ - feat: expose breadcrumb factory fn ([@tboley-vt](https://github.com/tboley-vt))
156
+
157
+ #### Authors: 1
158
+
159
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
160
+
161
+ ---
162
+
163
+ # v2.7.4 (Tue Jul 29 2025)
164
+
165
+ #### 🐛 Bug Fix
166
+
167
+ - Add options to dialog to prevent dismiss [#266](https://github.com/veritone/design-system/pull/266) ([@severin2](https://github.com/severin2))
168
+
169
+ #### Authors: 1
170
+
171
+ - Severin ([@severin2](https://github.com/severin2))
172
+
173
+ ---
174
+
175
+ # v2.7.3 (Fri Jul 11 2025)
176
+
177
+ #### 🐛 Bug Fix
178
+
179
+ - feat.unstable: added drawer utility [#265](https://github.com/veritone/design-system/pull/265) ([@tboley-vt](https://github.com/tboley-vt))
180
+
181
+ #### Authors: 1
182
+
183
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
184
+
185
+ ---
186
+
187
+ # v2.7.2 (Thu Jul 10 2025)
188
+
189
+ #### 🐛 Bug Fix
190
+
191
+ - Chore/table styling [#262](https://github.com/veritone/design-system/pull/262) ([@tboley-vt](https://github.com/tboley-vt))
192
+
193
+ #### Authors: 1
194
+
195
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
196
+
197
+ ---
198
+
199
+ # v2.7.1 (Thu Jul 10 2025)
200
+
201
+ #### 🐛 Bug Fix
202
+
203
+ - feat.unstable: card border radius changes, breadcrumbs [#263](https://github.com/veritone/design-system/pull/263) ([@tboley-vt](https://github.com/tboley-vt))
204
+
205
+ #### Authors: 1
206
+
207
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
208
+
209
+ ---
210
+
211
+ # v2.6.0 (Wed Jul 09 2025)
212
+
213
+ #### 🚀 Enhancement
214
+
215
+ - chore: remove MUI (part 1) - remove @mui/system and all low hanging @mui/material imports [#259](https://github.com/veritone/design-system/pull/259) ([@tboley-vt](https://github.com/tboley-vt))
216
+
217
+ #### 🐛 Bug Fix
218
+
219
+ - chore: unstable components [#261](https://github.com/veritone/design-system/pull/261) ([@tboley-vt](https://github.com/tboley-vt))
220
+
221
+ #### Authors: 1
222
+
223
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
224
+
225
+ ---
226
+
227
+ # v2.5.19 (Tue Jul 01 2025)
228
+
229
+ #### 🐛 Bug Fix
230
+
231
+ - feat: added ability to override markdown styling, added parent element with display: contents [#258](https://github.com/veritone/design-system/pull/258) ([@tboley-vt](https://github.com/tboley-vt))
232
+
233
+ #### Authors: 1
234
+
235
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
236
+
237
+ ---
238
+
239
+ # v2.5.18 (Tue Jul 01 2025)
240
+
241
+ #### ⚠️ Pushed to `main`
242
+
243
+ - add theme options for checkbox background color ([@justicejessica](https://github.com/justicejessica))
244
+ - update checkbox component to support background fill ([@justicejessica](https://github.com/justicejessica))
245
+
246
+ #### Authors: 1
247
+
248
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
249
+
250
+ ---
251
+
252
+ # v2.5.17 (Tue Jun 17 2025)
253
+
254
+ #### 🐛 Bug Fix
255
+
256
+ - applied classname prop to datepicker component [#256](https://github.com/veritone/design-system/pull/256) ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
257
+
258
+ #### Authors: 1
259
+
260
+ - Mark Froehlich ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
261
+
262
+ ---
263
+
264
+ # v2.5.16 (Wed Jun 11 2025)
265
+
266
+ #### 🐛 Bug Fix
267
+
268
+ - Feat/extras/markdown [#254](https://github.com/veritone/design-system/pull/254) ([@tboley-vt](https://github.com/tboley-vt))
269
+
270
+ #### Authors: 1
271
+
272
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
273
+
274
+ ---
275
+
276
+ # v2.5.15 (Mon Jun 09 2025)
277
+
278
+ #### 🐛 Bug Fix
279
+
280
+ - feat: toast and uploader updates [#253](https://github.com/veritone/design-system/pull/253) ([@tboley-vt](https://github.com/tboley-vt))
281
+
282
+ #### Authors: 1
283
+
284
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
285
+
286
+ ---
287
+
288
+ # v2.5.14 (Fri May 30 2025)
289
+
290
+ #### 🐛 Bug Fix
291
+
292
+ - does not allow selecting the same option multiple times when multiple… [#252](https://github.com/veritone/design-system/pull/252) ([@MikeJDev](https://github.com/MikeJDev))
293
+
294
+ #### Authors: 1
295
+
296
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
297
+
298
+ ---
299
+
300
+ # v2.5.13 (Wed May 14 2025)
301
+
302
+ #### ⚠️ Pushed to `main`
303
+
304
+ - feat: add check for error prop in error boundary ([@tboley-vt](https://github.com/tboley-vt))
305
+
306
+ #### Authors: 1
307
+
308
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
309
+
310
+ ---
311
+
312
+ # v2.5.12 (Fri Apr 11 2025)
313
+
314
+ #### 🐛 Bug Fix
315
+
316
+ - Fix/VE-9659-darkmode-causing-component-issues [#249](https://github.com/veritone/design-system/pull/249) ([@eortiz-vt](https://github.com/eortiz-vt))
317
+
318
+ #### Authors: 1
319
+
320
+ - [@eortiz-vt](https://github.com/eortiz-vt)
321
+
322
+ ---
323
+
324
+ # v2.5.11 (Wed Apr 09 2025)
325
+
326
+ #### 🐛 Bug Fix
327
+
328
+ - Bump vite from 6.1.0 to 6.1.4 [#247](https://github.com/veritone/design-system/pull/247) ([@dependabot[bot]](https://github.com/dependabot[bot]))
329
+
330
+ #### Authors: 1
331
+
332
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
333
+
334
+ ---
335
+
336
+ # v2.5.10 (Thu Apr 03 2025)
337
+
338
+ #### 🐛 Bug Fix
339
+
340
+ - Feat/10614 use over import [#246](https://github.com/veritone/design-system/pull/246) ([@MikeJDev](https://github.com/MikeJDev))
341
+
342
+ #### Authors: 1
343
+
344
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
345
+
346
+ ---
347
+
348
+ # v2.5.9 (Thu Apr 03 2025)
349
+
350
+ #### 🐛 Bug Fix
351
+
352
+ - Final tests [#245](https://github.com/veritone/design-system/pull/245) ([@MikeJDev](https://github.com/MikeJDev))
353
+
354
+ #### Authors: 1
355
+
356
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
357
+
358
+ ---
359
+
360
+ # v2.5.8 (Thu Mar 27 2025)
361
+
362
+ #### 🐛 Bug Fix
363
+
364
+ - Final tests [#243](https://github.com/veritone/design-system/pull/243) ([@MikeJDev](https://github.com/MikeJDev))
365
+
366
+ #### Authors: 1
367
+
368
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
369
+
370
+ ---
371
+
372
+ # v2.5.7 (Thu Mar 27 2025)
373
+
374
+ #### 🐛 Bug Fix
375
+
376
+ - drawer tests [#242](https://github.com/veritone/design-system/pull/242) ([@MikeJDev](https://github.com/MikeJDev))
377
+
378
+ #### Authors: 1
379
+
380
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
381
+
382
+ ---
383
+
384
+ # v2.5.6 (Mon Mar 24 2025)
385
+
386
+ #### 🐛 Bug Fix
387
+
388
+ - Add more unit tests [#239](https://github.com/veritone/design-system/pull/239) ([@MikeJDev](https://github.com/MikeJDev))
389
+
390
+ #### Authors: 1
391
+
392
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
393
+
394
+ ---
395
+
396
+ # v2.5.5 (Tue Feb 25 2025)
397
+
398
+ #### 🐛 Bug Fix
399
+
400
+ - Feat/adjust select dropdown styling [#238](https://github.com/veritone/design-system/pull/238) ([@justicejessica](https://github.com/justicejessica))
401
+
402
+ #### Authors: 1
403
+
404
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
405
+
406
+ ---
407
+
408
+ # v2.5.4 (Mon Feb 24 2025)
409
+
410
+ #### 🐛 Bug Fix
411
+
412
+ - dialog tests [#237](https://github.com/veritone/design-system/pull/237) ([@MikeJDev](https://github.com/MikeJDev))
413
+
414
+ #### Authors: 1
415
+
416
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
417
+
418
+ ---
419
+
420
+ # v2.5.3 (Fri Feb 21 2025)
421
+
422
+ #### 🐛 Bug Fix
423
+
424
+ - Color picker unit tests [#236](https://github.com/veritone/design-system/pull/236) ([@MikeJDev](https://github.com/MikeJDev))
425
+
426
+ #### Authors: 1
427
+
428
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
429
+
430
+ ---
431
+
432
+ # v2.5.2 (Thu Feb 20 2025)
433
+
434
+ #### 🐛 Bug Fix
435
+
436
+ - Feat/submenu setup [#220](https://github.com/veritone/design-system/pull/220) ([@eortiz-vt](https://github.com/eortiz-vt) [@justicejessica](https://github.com/justicejessica) [@MikeJDev](https://github.com/MikeJDev))
437
+
438
+ #### Authors: 3
439
+
440
+ - [@eortiz-vt](https://github.com/eortiz-vt)
441
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
442
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
443
+
444
+ ---
445
+
446
+ # v2.5.1 (Thu Feb 20 2025)
447
+
448
+ #### 🐛 Bug Fix
449
+
450
+ - style(repo): fix max height issue [#218](https://github.com/veritone/design-system/pull/218) ([@eortiz-vt](https://github.com/eortiz-vt) [@MikeJDev](https://github.com/MikeJDev))
451
+
452
+ #### 🔩 Dependency Updates
453
+
454
+ - Bump nanoid from 3.3.7 to 3.3.8 [#229](https://github.com/veritone/design-system/pull/229) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
455
+ - Bump vitest from 1.3.1 to 1.6.1 [#228](https://github.com/veritone/design-system/pull/228) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
456
+ - Bump vite from 5.1.5 to 6.1.0 [#231](https://github.com/veritone/design-system/pull/231) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
457
+ - Bump ws from 8.16.0 to 8.18.0 [#234](https://github.com/veritone/design-system/pull/234) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
458
+
459
+ #### Authors: 3
460
+
461
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
462
+ - [@eortiz-vt](https://github.com/eortiz-vt)
463
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
464
+
465
+ ---
466
+
467
+ # v2.5.0 (Wed Feb 19 2025)
468
+
469
+ #### 🚀 Enhancement
470
+
471
+ - fix: added font and normalize as actual deps - imported via /baseline.css and /fonts/default.css [#235](https://github.com/veritone/design-system/pull/235) ([@tboley-vt](https://github.com/tboley-vt))
472
+
473
+ #### Authors: 1
474
+
475
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
476
+
477
+ ---
478
+
479
+ # v2.4.35 (Wed Feb 19 2025)
480
+
481
+ #### 🐛 Bug Fix
482
+
483
+ - chore: split out default theme options so they can be more easily adjusted [#233](https://github.com/veritone/design-system/pull/233) ([@tboley-vt](https://github.com/tboley-vt))
484
+
485
+ #### 🔩 Dependency Updates
486
+
487
+ - Bump braces from 3.0.2 to 3.0.3 [#230](https://github.com/veritone/design-system/pull/230) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
488
+
489
+ #### Authors: 3
490
+
491
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
492
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
493
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
494
+
495
+ ---
496
+
497
+ # v2.4.34 (Wed Feb 19 2025)
498
+
499
+ #### ⚠️ Pushed to `main`
500
+
501
+ - Fix rootDir issue ([@tboley-vt](https://github.com/tboley-vt))
502
+
503
+ #### Authors: 1
504
+
505
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
506
+
507
+ ---
508
+
509
+ # v2.4.33 (Wed Feb 19 2025)
510
+
511
+ #### 🐛 Bug Fix
512
+
513
+ - Feat/card component [#232](https://github.com/veritone/design-system/pull/232) ([@tboley-vt](https://github.com/tboley-vt))
514
+
515
+ #### 🔩 Dependency Updates
516
+
517
+ - Bump ejs from 3.1.9 to 3.1.10 [#185](https://github.com/veritone/design-system/pull/185) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
518
+ - Bump postcss from 8.4.26 to 8.4.38 [#184](https://github.com/veritone/design-system/pull/184) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
519
+ - Bump tar from 6.1.15 to 6.2.1 [#181](https://github.com/veritone/design-system/pull/181) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
520
+ - Bump express from 4.18.2 to 4.19.2 [#168](https://github.com/veritone/design-system/pull/168) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
521
+ - Bump @babel/traverse from 7.20.12 to 7.24.0 [#157](https://github.com/veritone/design-system/pull/157) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
522
+ - Bump semver from 5.7.1 to 5.7.2 [#156](https://github.com/veritone/design-system/pull/156) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
523
+ - Bump @adobe/css-tools from 4.0.1 to 4.3.3 [#154](https://github.com/veritone/design-system/pull/154) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
524
+ - Bump word-wrap from 1.2.3 to 1.2.5 [#155](https://github.com/veritone/design-system/pull/155) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
525
+
526
+ #### Authors: 3
527
+
528
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
529
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
530
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
531
+
532
+ ---
533
+
534
+ # v2.4.32 (Tue Feb 18 2025)
535
+
536
+ #### 🐛 Bug Fix
537
+
538
+ - Update chromatic.yml and vite [#226](https://github.com/veritone/design-system/pull/226) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@tboley-vt](https://github.com/tboley-vt))
539
+
540
+ #### Authors: 2
541
+
542
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
543
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
544
+
545
+ ---
546
+
547
+ # v2.4.31 (Tue Feb 18 2025)
548
+
549
+ #### 🐛 Bug Fix
550
+
551
+ - add push to github actions [#224](https://github.com/veritone/design-system/pull/224) ([@MikeJDev](https://github.com/MikeJDev))
552
+
553
+ #### Authors: 1
554
+
555
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
556
+
557
+ ---
558
+
559
+ # v2.4.30 (Tue Feb 18 2025)
560
+
561
+ #### 🐛 Bug Fix
562
+
563
+ - Bump cross-spawn from 7.0.3 to 7.0.6 [#223](https://github.com/veritone/design-system/pull/223) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@MikeJDev](https://github.com/MikeJDev))
564
+
565
+ #### Authors: 2
566
+
567
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
568
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
569
+
570
+ ---
571
+
572
+ # v2.4.29 (Tue Feb 18 2025)
573
+
574
+ #### 🐛 Bug Fix
575
+
576
+ - feat/Add unit tests for the more basic components. [#219](https://github.com/veritone/design-system/pull/219) ([@MikeJDev](https://github.com/MikeJDev))
577
+
578
+ #### Authors: 1
579
+
580
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
581
+
582
+ ---
583
+
584
+ # v2.4.28 (Tue Jan 21 2025)
585
+
586
+ #### 🐛 Bug Fix
587
+
588
+ - Make react peer deps less strict [#215](https://github.com/veritone/design-system/pull/215) ([@tboley-vt](https://github.com/tboley-vt))
589
+ - Updated storybook, added open state in stories to select and date picker for better visual regression testing [#214](https://github.com/veritone/design-system/pull/214) (mjanes@veritone.com [@tboley-vt](https://github.com/tboley-vt))
590
+
591
+ #### ⚠️ Pushed to `main`
592
+
593
+ - Fixed deps ([@tboley-vt](https://github.com/tboley-vt))
594
+
595
+ #### Authors: 2
596
+
597
+ - Mike Janes (mjanes@veritone.com)
598
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
599
+
600
+ ---
601
+
602
+ # v2.4.27 (Wed Dec 04 2024)
603
+
604
+ #### 🐛 Bug Fix
605
+
606
+ - adjusted useFloating to only flip if space below is insufficent [#213](https://github.com/veritone/design-system/pull/213) (mjanes@veritone.com)
607
+
608
+ #### Authors: 1
609
+
610
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
611
+
612
+ ---
613
+
614
+ # v2.4.26 (Tue Nov 19 2024)
615
+
616
+ #### 🐛 Bug Fix
617
+
618
+ - fix(design-system): fix back button [#211](https://github.com/veritone/design-system/pull/211) ([@sjcuello](https://github.com/sjcuello) [@vt-scuello](https://github.com/vt-scuello))
619
+
620
+ #### Authors: 2
621
+
622
+ - [@vt-scuello](https://github.com/vt-scuello)
623
+ - Santiago Cuello ([@sjcuello](https://github.com/sjcuello))
624
+
625
+ ---
626
+
627
+ # v2.4.23 (Wed Oct 30 2024)
628
+
629
+ #### 🐛 Bug Fix
630
+
631
+ - added tight prop to select and rowsPerPageVariant prop to table pagin… [#210](https://github.com/veritone/design-system/pull/210) ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone) [@tboley-vt](https://github.com/tboley-vt))
632
+ - add on blur to select freeSolo [#209](https://github.com/veritone/design-system/pull/209) (mjanes@veritone.com)
633
+
634
+ #### Authors: 3
635
+
636
+ - Mark Froehlich ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
637
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
638
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
639
+
640
+ ---
641
+
642
+ # v2.4.22 (Tue Oct 01 2024)
643
+
644
+ #### 🐛 Bug Fix
645
+
646
+ - hides menu when reference element is hidden [#208](https://github.com/veritone/design-system/pull/208) (mjanes@veritone.com)
647
+
648
+ #### Authors: 1
649
+
650
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
651
+
652
+ ---
653
+
654
+ # v2.4.21 (Tue Sep 24 2024)
655
+
656
+ #### 🐛 Bug Fix
657
+
658
+ - Fix/ve 5561: Miscellaneous UI Fixes [#206](https://github.com/veritone/design-system/pull/206) ([@eortiz-vt](https://github.com/eortiz-vt) [@tboley-vt](https://github.com/tboley-vt))
659
+
660
+ #### Authors: 2
661
+
662
+ - [@eortiz-vt](https://github.com/eortiz-vt)
663
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
664
+
665
+ ---
666
+
667
+ # v2.4.20 (Tue Sep 24 2024)
668
+
669
+ #### 🐛 Bug Fix
670
+
671
+ - feat/VE-5755-update-enqueue-toast-hook-to-support-action-prop [#207](https://github.com/veritone/design-system/pull/207) ([@eortiz-vt](https://github.com/eortiz-vt) [@tboley-vt](https://github.com/tboley-vt))
672
+
673
+ #### Authors: 2
674
+
675
+ - [@eortiz-vt](https://github.com/eortiz-vt)
676
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
677
+
678
+ ---
679
+
680
+ # v2.4.19 (Mon Sep 09 2024)
681
+
682
+ #### 🐛 Bug Fix
683
+
684
+ - Feat/stepper styles [#205](https://github.com/veritone/design-system/pull/205) ([@tboley-vt](https://github.com/tboley-vt))
685
+
686
+ #### Authors: 1
687
+
688
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
689
+
690
+ ---
691
+
692
+ # v2.4.18 (Mon Sep 09 2024)
693
+
694
+ #### 🐛 Bug Fix
695
+
696
+ - Better stepper styling [#204](https://github.com/veritone/design-system/pull/204) ([@tboley-vt](https://github.com/tboley-vt))
697
+
698
+ #### Authors: 1
699
+
700
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
701
+
702
+ ---
703
+
704
+ # v2.4.17 (Wed Sep 04 2024)
705
+
706
+ #### 🐛 Bug Fix
707
+
708
+ - Fix/stepper updates [#203](https://github.com/veritone/design-system/pull/203) ([@justicejessica](https://github.com/justicejessica))
709
+
710
+ #### Authors: 1
711
+
712
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
713
+
714
+ ---
715
+
716
+ # v2.4.16 (Wed Sep 04 2024)
717
+
718
+ #### 🐛 Bug Fix
719
+
720
+ - Feat/ve 4749 stepper component [#202](https://github.com/veritone/design-system/pull/202) ([@justicejessica](https://github.com/justicejessica))
721
+
722
+ #### Authors: 1
723
+
724
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
725
+
726
+ ---
727
+
728
+ # v2.4.15 (Wed Sep 04 2024)
729
+
730
+ #### 🐛 Bug Fix
731
+
732
+ - Revert "Feat/ve 4749 stepper component" [#201](https://github.com/veritone/design-system/pull/201) ([@justicejessica](https://github.com/justicejessica))
733
+ - Feat/ve 4749 stepper component [#200](https://github.com/veritone/design-system/pull/200) ([@justicejessica](https://github.com/justicejessica))
734
+
735
+ #### Authors: 1
736
+
737
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
738
+
739
+ ---
740
+
741
+ # v2.4.14 (Thu Aug 22 2024)
742
+
743
+ #### 🐛 Bug Fix
744
+
745
+ - Multi select and freeSolo support in Select [#199](https://github.com/veritone/design-system/pull/199) ([@tboley-vt](https://github.com/tboley-vt))
746
+
747
+ #### Authors: 1
748
+
749
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
750
+
751
+ ---
752
+
753
+ # v2.4.13 (Mon Aug 05 2024)
754
+
755
+ #### 🐛 Bug Fix
756
+
757
+ - Feat/file uploader mini styling [#198](https://github.com/veritone/design-system/pull/198) ([@justicejessica](https://github.com/justicejessica))
758
+
759
+ #### Authors: 1
760
+
761
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
762
+
763
+ ---
764
+
765
+ # v2.4.12 (Fri Jul 26 2024)
766
+
767
+ #### 🐛 Bug Fix
768
+
769
+ - Fix FileUploader dropzone error state [#197](https://github.com/veritone/design-system/pull/197) ([@tboley-vt](https://github.com/tboley-vt))
770
+
771
+ #### Authors: 1
772
+
773
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
774
+
775
+ ---
776
+
777
+ # v2.4.11 (Tue Jul 09 2024)
778
+
779
+ #### 🐛 Bug Fix
780
+
781
+ - File uploader v2 [#196](https://github.com/veritone/design-system/pull/196) ([@tboley-vt](https://github.com/tboley-vt))
782
+
783
+ #### Authors: 1
784
+
785
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
786
+
787
+ ---
788
+
789
+ # v2.4.10 (Fri Jun 28 2024)
790
+
791
+ #### 🐛 Bug Fix
792
+
793
+ - update checkbox styling [#195](https://github.com/veritone/design-system/pull/195) ([@justicejessica](https://github.com/justicejessica))
794
+
795
+ #### Authors: 1
796
+
797
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
798
+
799
+ ---
800
+
801
+ # v2.4.9 (Thu Jun 27 2024)
802
+
803
+ #### 🐛 Bug Fix
804
+
805
+ - add page number support to table pagination [#194](https://github.com/veritone/design-system/pull/194) ([@mertnacakgedigi](https://github.com/mertnacakgedigi))
806
+
807
+ #### Authors: 1
808
+
809
+ - Mert Nacakgedigi ([@mertnacakgedigi](https://github.com/mertnacakgedigi))
810
+
811
+ ---
812
+
813
+ # v2.4.8 (Tue Jun 11 2024)
814
+
815
+ #### 🐛 Bug Fix
816
+
817
+ - Adjusted FormControl width to fill control if set to width: 100% [#193](https://github.com/veritone/design-system/pull/193) ([@tboley-vt](https://github.com/tboley-vt))
818
+
819
+ #### Authors: 1
820
+
821
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
822
+
823
+ ---
824
+
825
+ # v2.4.7 (Mon Jun 10 2024)
826
+
827
+ #### ⚠️ Pushed to `main`
828
+
829
+ - Update README.md ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
830
+
831
+ #### Authors: 1
832
+
833
+ - Mark Froehlich ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
834
+
835
+ ---
836
+
837
+ # v2.4.6 (Mon Jun 10 2024)
838
+
839
+ #### 🐛 Bug Fix
840
+
841
+ - Feat/ve 2614 pendo tags [#192](https://github.com/veritone/design-system/pull/192) ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
842
+
843
+ #### Authors: 1
844
+
845
+ - Mark Froehlich ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
846
+
847
+ ---
848
+
849
+ # v2.4.5 (Fri Jun 07 2024)
850
+
851
+ #### 🐛 Bug Fix
852
+
853
+ - VE-2724 Update MenuOption type [#191](https://github.com/veritone/design-system/pull/191) ([@kimmichurri](https://github.com/kimmichurri))
854
+
855
+ #### Authors: 1
856
+
857
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
858
+
859
+ ---
860
+
861
+ # v2.4.4 (Thu Jun 06 2024)
862
+
863
+ #### 🐛 Bug Fix
864
+
865
+ - Feat/color picker [#190](https://github.com/veritone/design-system/pull/190) (mjanes@veritone.com)
866
+
867
+ #### Authors: 1
868
+
869
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
870
+
871
+ ---
872
+
873
+ # v2.4.3 (Fri May 24 2024)
874
+
875
+ #### 🐛 Bug Fix
876
+
877
+ - VE-2657: switched to background-primary for orders table row background [#189](https://github.com/veritone/design-system/pull/189) ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
878
+
879
+ #### Authors: 1
880
+
881
+ - Mark Froehlich ([@mfroehlich-veritone](https://github.com/mfroehlich-veritone))
882
+
883
+ ---
884
+
885
+ # v2.4.2 (Tue May 07 2024)
886
+
887
+ #### 🐛 Bug Fix
888
+
889
+ - Minor update to readme to test redeploy [#188](https://github.com/veritone/design-system/pull/188) ([@kimmichurri](https://github.com/kimmichurri))
890
+
891
+ #### Authors: 1
892
+
893
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
894
+
895
+ ---
896
+
897
+ # v2.4.1 (Tue May 07 2024)
898
+
899
+ #### 🐛 Bug Fix
900
+
901
+ - Remove function from emotion causing test errors in hive [#186](https://github.com/veritone/design-system/pull/186) ([@kimmichurri](https://github.com/kimmichurri))
902
+
903
+ #### Authors: 1
904
+
905
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
906
+
907
+ ---
908
+
909
+ # v2.4.0 (Mon Apr 29 2024)
910
+
911
+ #### 🚀 Enhancement
912
+
913
+ - VE-323 Begin reimplement auto table [#182](https://github.com/veritone/design-system/pull/182) ([@kimmichurri](https://github.com/kimmichurri))
914
+
915
+ #### 🐛 Bug Fix
916
+
917
+ - Add status chip [#183](https://github.com/veritone/design-system/pull/183) ([@kimmichurri](https://github.com/kimmichurri))
918
+
919
+ #### Authors: 1
920
+
921
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
922
+
923
+ ---
924
+
925
+ # v2.3.14 (Thu Apr 04 2024)
926
+
927
+ #### 🐛 Bug Fix
928
+
929
+ - More tooltip adjustments [#180](https://github.com/veritone/design-system/pull/180) ([@tboley-vt](https://github.com/tboley-vt))
930
+
931
+ #### Authors: 1
932
+
933
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
934
+
935
+ ---
936
+
937
+ # v2.3.13 (Thu Apr 04 2024)
938
+
939
+ #### 🐛 Bug Fix
940
+
941
+ - update input styling [#176](https://github.com/veritone/design-system/pull/176) ([@justicejessica](https://github.com/justicejessica))
942
+
943
+ #### Authors: 1
944
+
945
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
946
+
947
+ ---
948
+
949
+ # v2.3.12 (Thu Apr 04 2024)
950
+
951
+ #### 🐛 Bug Fix
952
+
953
+ - onchange logic, floating ui fix [#178](https://github.com/veritone/design-system/pull/178) ([@justicejessica](https://github.com/justicejessica))
954
+
955
+ #### Authors: 1
956
+
957
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
958
+
959
+ ---
960
+
961
+ # v2.3.11 (Wed Apr 03 2024)
962
+
963
+ #### 🐛 Bug Fix
964
+
965
+ - New tooltip styling [#179](https://github.com/veritone/design-system/pull/179) ([@tboley-vt](https://github.com/tboley-vt))
966
+
967
+ #### Authors: 1
968
+
969
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
970
+
971
+ ---
972
+
973
+ # v2.3.10 (Wed Apr 03 2024)
974
+
975
+ #### 🐛 Bug Fix
976
+
977
+ - VT 2024 Theme with Typography.leadingTrim [#175](https://github.com/veritone/design-system/pull/175) ([@tboley-vt](https://github.com/tboley-vt))
978
+
979
+ #### Authors: 1
980
+
981
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
982
+
983
+ ---
984
+
985
+ # v2.3.9 (Thu Mar 28 2024)
986
+
987
+ #### 🐛 Bug Fix
988
+
989
+ - Feature/date picker tweaks [#174](https://github.com/veritone/design-system/pull/174) ([@justicejessica](https://github.com/justicejessica))
990
+
991
+ #### Authors: 1
992
+
993
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
994
+
995
+ ---
996
+
997
+ # v2.3.8 (Thu Mar 28 2024)
998
+
999
+ #### 🐛 Bug Fix
1000
+
1001
+ - Pagination localeString & separate Icons [#173](https://github.com/veritone/design-system/pull/173) ([@tboley-vt](https://github.com/tboley-vt))
1002
+
1003
+ #### Authors: 1
1004
+
1005
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1006
+
1007
+ ---
1008
+
1009
+ # v2.3.7 (Thu Mar 28 2024)
1010
+
1011
+ #### ⚠️ Pushed to `main`
1012
+
1013
+ - Fixed checkbox, radio button z-index issues ([@tboley-vt](https://github.com/tboley-vt))
1014
+
1015
+ #### Authors: 1
1016
+
1017
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1018
+
1019
+ ---
1020
+
1021
+ # v2.3.6 (Thu Mar 28 2024)
1022
+
1023
+ #### ⚠️ Pushed to `main`
1024
+
1025
+ - Fixed drawer testid location ([@tboley-vt](https://github.com/tboley-vt))
1026
+
1027
+ #### Authors: 1
1028
+
1029
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1030
+
1031
+ ---
1032
+
1033
+ # v2.3.5 (Wed Mar 27 2024)
1034
+
1035
+ #### 🐛 Bug Fix
1036
+
1037
+ - Feature/date range picker [#165](https://github.com/veritone/design-system/pull/165) ([@justicejessica](https://github.com/justicejessica) [@tboley-vt](https://github.com/tboley-vt))
1038
+
1039
+ #### Authors: 2
1040
+
1041
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
1042
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1043
+
1044
+ ---
1045
+
1046
+ # v2.3.4 (Wed Mar 27 2024)
1047
+
1048
+ #### 🐛 Bug Fix
1049
+
1050
+ - Fix/misc 2 [#172](https://github.com/veritone/design-system/pull/172) ([@tboley-vt](https://github.com/tboley-vt))
1051
+
1052
+ #### Authors: 1
1053
+
1054
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1055
+
1056
+ ---
1057
+
1058
+ # v2.3.3 (Tue Mar 26 2024)
1059
+
1060
+ #### 🐛 Bug Fix
1061
+
1062
+ - Made label optional in form control [#171](https://github.com/veritone/design-system/pull/171) ([@tboley-vt](https://github.com/tboley-vt))
1063
+
1064
+ #### Authors: 1
1065
+
1066
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1067
+
1068
+ ---
1069
+
1070
+ # v2.3.2 (Tue Mar 26 2024)
1071
+
1072
+ #### ⚠️ Pushed to `main`
1073
+
1074
+ - Exported FormControl ([@tboley-vt](https://github.com/tboley-vt))
1075
+
1076
+ #### Authors: 1
1077
+
1078
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1079
+
1080
+ ---
1081
+
1082
+ # v2.3.1 (Tue Mar 26 2024)
1083
+
1084
+ #### 🐛 Bug Fix
1085
+
1086
+ - Badge component [#170](https://github.com/veritone/design-system/pull/170) ([@tboley-vt](https://github.com/tboley-vt))
1087
+
1088
+ #### Authors: 1
1089
+
1090
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1091
+
1092
+ ---
1093
+
1094
+ # v2.3.0 (Tue Mar 26 2024)
1095
+
1096
+ #### 🚀 Enhancement
1097
+
1098
+ - Minor version bump [#169](https://github.com/veritone/design-system/pull/169) ([@tboley-vt](https://github.com/tboley-vt))
1099
+
1100
+ #### 🐛 Bug Fix
1101
+
1102
+ - Refactor/inputs [#166](https://github.com/veritone/design-system/pull/166) ([@tboley-vt](https://github.com/tboley-vt))
1103
+
1104
+ #### Authors: 1
1105
+
1106
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1107
+
1108
+ ---
1109
+
1110
+ # v2.2.6 (Tue Mar 26 2024)
1111
+
1112
+ #### 🐛 Bug Fix
1113
+
1114
+ - Drawer placement and animations [#167](https://github.com/veritone/design-system/pull/167) ([@tboley-vt](https://github.com/tboley-vt))
1115
+
1116
+ #### Authors: 1
1117
+
1118
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1119
+
1120
+ ---
1121
+
1122
+ # v2.2.5 (Mon Mar 25 2024)
1123
+
1124
+ #### ⚠️ Pushed to `main`
1125
+
1126
+ - Added Typography element assumption ([@tboley-vt](https://github.com/tboley-vt))
1127
+
1128
+ #### Authors: 1
1129
+
1130
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1131
+
1132
+ ---
1133
+
1134
+ # v2.2.4 (Tue Mar 19 2024)
1135
+
1136
+ #### ⚠️ Pushed to `main`
1137
+
1138
+ - Fix for portal context corruption ([@tboley-vt](https://github.com/tboley-vt))
1139
+ - Create ci.yaml ([@tboley-vt](https://github.com/tboley-vt))
1140
+
1141
+ #### Authors: 1
1142
+
1143
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1144
+
1145
+ ---
1146
+
1147
+ # v2.2.3 (Mon Mar 18 2024)
1148
+
1149
+ #### 🐛 Bug Fix
1150
+
1151
+ - Removed unnecessary palette resolution in favor of basic ThemeVars spec. Also fixed TablePagination label value [#164](https://github.com/veritone/design-system/pull/164) ([@tboley-vt](https://github.com/tboley-vt))
1152
+
1153
+ #### Authors: 1
1154
+
1155
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1156
+
1157
+ ---
1158
+
1159
+ # v2.2.2 (Mon Mar 18 2024)
1160
+
1161
+ #### 🐛 Bug Fix
1162
+
1163
+ - PortalThemeRelay [#163](https://github.com/veritone/design-system/pull/163) ([@tboley-vt](https://github.com/tboley-vt))
1164
+
1165
+ #### Authors: 1
1166
+
1167
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1168
+
1169
+ ---
1170
+
1171
+ # v2.2.1 (Sat Mar 16 2024)
1172
+
1173
+ #### 🐛 Bug Fix
1174
+
1175
+ - Fix/misc [#162](https://github.com/veritone/design-system/pull/162) ([@tboley-vt](https://github.com/tboley-vt))
1176
+
1177
+ #### Authors: 1
1178
+
1179
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1180
+
1181
+ ---
1182
+
1183
+ # v2.2.0 (Sat Mar 16 2024)
1184
+
1185
+ #### 🚀 Enhancement
1186
+
1187
+ - Refactor/button palette [#160](https://github.com/veritone/design-system/pull/160) ([@tboley-vt](https://github.com/tboley-vt))
1188
+
1189
+ #### ⚠️ Pushed to `main`
1190
+
1191
+ - Updated theme.generated.scss ([@tboley-vt](https://github.com/tboley-vt))
1192
+
1193
+ #### Authors: 1
1194
+
1195
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1196
+
1197
+ ---
1198
+
1199
+ # v2.1.5 (Wed Mar 13 2024)
1200
+
1201
+ #### 🐛 Bug Fix
1202
+
1203
+ - Feature/vtn 49425/chip component [#158](https://github.com/veritone/design-system/pull/158) (mjanes@veritone.com [@tboley-vt](https://github.com/tboley-vt))
1204
+
1205
+ #### Authors: 2
1206
+
1207
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1208
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1209
+
1210
+ ---
1211
+
1212
+ # v2.1.4 (Mon Mar 11 2024)
1213
+
1214
+ #### ⚠️ Pushed to `main`
1215
+
1216
+ - Tooltip strategy prop, checkbox background color ([@tboley-vt](https://github.com/tboley-vt))
1217
+
1218
+ #### Authors: 1
1219
+
1220
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1221
+
1222
+ ---
1223
+
1224
+ # v2.1.3 (Fri Mar 08 2024)
1225
+
1226
+ #### ⚠️ Pushed to `main`
1227
+
1228
+ - Fix package exports ([@tboley-vt](https://github.com/tboley-vt))
1229
+
1230
+ #### Authors: 1
1231
+
1232
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1233
+
1234
+ ---
1235
+
1236
+ # v2.1.2 (Fri Mar 08 2024)
1237
+
1238
+ #### ⚠️ Pushed to `main`
1239
+
1240
+ - Updated docs to reflect new import ([@tboley-vt](https://github.com/tboley-vt))
1241
+
1242
+ #### Authors: 1
1243
+
1244
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1245
+
1246
+ ---
1247
+
1248
+ # v2.1.1 (Fri Mar 08 2024)
1249
+
1250
+ #### 🐛 Bug Fix
1251
+
1252
+ - Fixed static storybook build and added dockerfile [#153](https://github.com/veritone/design-system/pull/153) ([@tboley-vt](https://github.com/tboley-vt))
1253
+
1254
+ #### Authors: 1
1255
+
1256
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1257
+
1258
+ ---
1259
+
1260
+ # v2.1.0 (Thu Mar 07 2024)
1261
+
1262
+ #### 🚀 Enhancement
1263
+
1264
+ - Refactor/new theme palette structure [#152](https://github.com/veritone/design-system/pull/152) ([@tboley-vt](https://github.com/tboley-vt))
1265
+
1266
+ #### Authors: 1
1267
+
1268
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1269
+
1270
+ ---
1271
+
1272
+ # v2.0.8 (Tue Mar 05 2024)
1273
+
1274
+ #### ⚠️ Pushed to `main`
1275
+
1276
+ - Added name to Input ([@tboley-vt](https://github.com/tboley-vt))
1277
+
1278
+ #### Authors: 1
1279
+
1280
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1281
+
1282
+ ---
1283
+
1284
+ # v2.0.7 (Sat Mar 02 2024)
1285
+
1286
+ #### ⚠️ Pushed to `main`
1287
+
1288
+ - Fixed Select typeahead ([@tboley-vt](https://github.com/tboley-vt))
1289
+
1290
+ #### Authors: 1
1291
+
1292
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1293
+
1294
+ ---
1295
+
1296
+ # v2.0.6 (Wed Feb 28 2024)
1297
+
1298
+ #### 🐛 Bug Fix
1299
+
1300
+ - Pagination, TablePagination components [#151](https://github.com/veritone/design-system/pull/151) ([@tboley-vt](https://github.com/tboley-vt))
1301
+
1302
+ #### Authors: 1
1303
+
1304
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1305
+
1306
+ ---
1307
+
1308
+ # v2.0.5 (Wed Feb 28 2024)
1309
+
1310
+ #### ⚠️ Pushed to `main`
1311
+
1312
+ - Added option to conditionally show/hide tooltip arrow ([@tboley-vt](https://github.com/tboley-vt))
1313
+
1314
+ #### Authors: 1
1315
+
1316
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1317
+
1318
+ ---
1319
+
1320
+ # v2.0.4 (Tue Feb 27 2024)
1321
+
1322
+ #### ⚠️ Pushed to `main`
1323
+
1324
+ - Removed material ui circular progress impl, added data-testid passthrough ([@tboley-vt](https://github.com/tboley-vt))
1325
+
1326
+ #### Authors: 1
1327
+
1328
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1329
+
1330
+ ---
1331
+
1332
+ # v2.0.3 (Tue Feb 27 2024)
1333
+
1334
+ #### 🐛 Bug Fix
1335
+
1336
+ - Feature/drawer+more docs [#150](https://github.com/veritone/design-system/pull/150) ([@tboley-vt](https://github.com/tboley-vt))
1337
+
1338
+ #### ⚠️ Pushed to `main`
1339
+
1340
+ - Bumped auto ([@tboley-vt](https://github.com/tboley-vt))
1341
+
1342
+ #### Authors: 1
1343
+
1344
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1345
+
1346
+ ---
1347
+
1348
+ # v2.0.2 (Sun Feb 18 2024)
1349
+
1350
+ #### 🐛 Bug Fix
1351
+
1352
+ - ESM & Docs [#149](https://github.com/veritone/design-system/pull/149) ([@tboley-vt](https://github.com/tboley-vt))
1353
+
1354
+ #### Authors: 1
1355
+
1356
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1357
+
1358
+ ---
1359
+
1360
+ # v2.0.1 (Thu Feb 15 2024)
1361
+
1362
+ #### 🐛 Bug Fix
1363
+
1364
+ - DMH misc updates 1 [#148](https://github.com/veritone/design-system/pull/148) ([@tboley-vt](https://github.com/tboley-vt))
1365
+
1366
+ #### Authors: 1
1367
+
1368
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1369
+
1370
+ ---
1371
+
1372
+ # v2.0.0 (Tue Feb 13 2024)
1373
+
1374
+ #### 💥 Breaking Change
1375
+
1376
+ - Next [#147](https://github.com/veritone/design-system/pull/147) ([@tboley-vt](https://github.com/tboley-vt))
1377
+ - Update deploy.yml [#141](https://github.com/veritone/design-system/pull/141) ([@tboley-vt](https://github.com/tboley-vt))
1378
+
1379
+ #### Authors: 1
1380
+
1381
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1382
+
1383
+ ---
1384
+
1385
+ # v1.12.65 (Wed Dec 20 2023)
1386
+
1387
+ #### 🐛 Bug Fix
1388
+
1389
+ - tabs default forced font size removed [#139](https://github.com/veritone/design-system/pull/139) (mjanes@veritone.com)
1390
+
1391
+ #### Authors: 1
1392
+
1393
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1394
+
1395
+ ---
1396
+
1397
+ # v1.12.64 (Tue Dec 12 2023)
1398
+
1399
+ #### 🐛 Bug Fix
1400
+
1401
+ - Fix/AutoTable virtualization visibility [#137](https://github.com/veritone/design-system/pull/137) ([@tboley-vt](https://github.com/tboley-vt))
1402
+
1403
+ #### Authors: 1
1404
+
1405
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1406
+
1407
+ ---
1408
+
1409
+ # v1.12.63 (Mon Dec 11 2023)
1410
+
1411
+ #### 🐛 Bug Fix
1412
+
1413
+ - VT misc updates 2.1 [#136](https://github.com/veritone/design-system/pull/136) ([@tboley-vt](https://github.com/tboley-vt))
1414
+
1415
+ #### Authors: 1
1416
+
1417
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1418
+
1419
+ ---
1420
+
1421
+ # v1.12.62 (Mon Dec 11 2023)
1422
+
1423
+ #### ⚠️ Pushed to `main`
1424
+
1425
+ - Split chromatic and unit tests actions ([@tboley-vt](https://github.com/tboley-vt))
1426
+
1427
+ #### Authors: 1
1428
+
1429
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1430
+
1431
+ ---
1432
+
1433
+ # v1.12.61 (Fri Dec 08 2023)
1434
+
1435
+ #### 🐛 Bug Fix
1436
+
1437
+ - PanelContent [#135](https://github.com/veritone/design-system/pull/135) ([@tboley-vt](https://github.com/tboley-vt))
1438
+
1439
+ #### Authors: 1
1440
+
1441
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1442
+
1443
+ ---
1444
+
1445
+ # v1.12.60 (Thu Dec 07 2023)
1446
+
1447
+ #### 🐛 Bug Fix
1448
+
1449
+ - Panel and auto complete fixes [#134](https://github.com/veritone/design-system/pull/134) (mjanes@veritone.com)
1450
+
1451
+ #### Authors: 1
1452
+
1453
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1454
+
1455
+ ---
1456
+
1457
+ # v1.12.59 (Thu Dec 07 2023)
1458
+
1459
+ #### 🐛 Bug Fix
1460
+
1461
+ - Fix font and boldness on uploader [#133](https://github.com/veritone/design-system/pull/133) (mjanes@veritone.com)
1462
+
1463
+ #### Authors: 1
1464
+
1465
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1466
+
1467
+ ---
1468
+
1469
+ # v1.12.58 (Wed Dec 06 2023)
1470
+
1471
+ #### 🐛 Bug Fix
1472
+
1473
+ - Autocomplete/Table misc styled components fixes [#132](https://github.com/veritone/design-system/pull/132) ([@tboley-vt](https://github.com/tboley-vt))
1474
+
1475
+ #### Authors: 1
1476
+
1477
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1478
+
1479
+ ---
1480
+
1481
+ # v1.12.57 (Mon Dec 04 2023)
1482
+
1483
+ #### ⚠️ Pushed to `main`
1484
+
1485
+ - Update deploy.yml ([@tboley-vt](https://github.com/tboley-vt))
1486
+
1487
+ #### Authors: 1
1488
+
1489
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1490
+
1491
+ ---
1492
+
1493
+ # v1.12.54 (Mon Dec 04 2023)
1494
+
1495
+ #### 🐛 Bug Fix
1496
+
1497
+ - CI fix [#131](https://github.com/veritone/design-system/pull/131) ([@tboley-vt](https://github.com/tboley-vt))
1498
+ - Error message component [#129](https://github.com/veritone/design-system/pull/129) ([@tboley-vt](https://github.com/tboley-vt))
1499
+
1500
+ #### ⚠️ Pushed to `main`
1501
+
1502
+ - Update deploy.yml ([@tboley-vt](https://github.com/tboley-vt))
1503
+
1504
+ #### Authors: 1
1505
+
1506
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1507
+
1508
+ ---
1509
+
1510
+ # v1.12.54 (Mon Dec 04 2023)
1511
+
1512
+ #### 🐛 Bug Fix
1513
+
1514
+ - Error message component [#129](https://github.com/veritone/design-system/pull/129) ([@tboley-vt](https://github.com/tboley-vt))
1515
+
1516
+ #### Authors: 1
1517
+
1518
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1519
+
1520
+ ---
1521
+
1522
+ # v1.12.52 (Mon Dec 04 2023)
1523
+
1524
+ #### 🐛 Bug Fix
1525
+
1526
+ - Add size prop to text input field [#128](https://github.com/veritone/design-system/pull/128) (mjanes@veritone.com)
1527
+
1528
+ #### Authors: 1
1529
+
1530
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1531
+
1532
+ ---
1533
+
1534
+ # v1.12.52 (Mon Dec 04 2023)
1535
+
1536
+ #### 🐛 Bug Fix
1537
+
1538
+ - Add size prop to text input field [#128](https://github.com/veritone/design-system/pull/128) (mjanes@veritone.com)
1539
+
1540
+ #### Authors: 1
1541
+
1542
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1543
+
1544
+ ---
1545
+
1546
+ # v1.12.52 (Mon Dec 04 2023)
1547
+
1548
+ #### 🐛 Bug Fix
1549
+
1550
+ - Add size prop to text input field [#128](https://github.com/veritone/design-system/pull/128) (mjanes@veritone.com)
1551
+
1552
+ #### Authors: 1
1553
+
1554
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1555
+
1556
+ ---
1557
+
1558
+ # v1.12.51 (Tue Nov 21 2023)
1559
+
1560
+ #### 🐛 Bug Fix
1561
+
1562
+ - Added table error message defaults to AutoTable [#127](https://github.com/veritone/design-system/pull/127) ([@tboley-vt](https://github.com/tboley-vt) mjanes@veritone.com)
1563
+ - Imperative toast hook [#126](https://github.com/veritone/design-system/pull/126) ([@tboley-vt](https://github.com/tboley-vt) mjanes@veritone.com)
1564
+
1565
+ #### Authors: 2
1566
+
1567
+ - Mike Janes (mjanes@veritone.com)
1568
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1569
+
1570
+ ---
1571
+
1572
+ # v1.12.51 (Tue Nov 21 2023)
1573
+
1574
+ #### 🐛 Bug Fix
1575
+
1576
+ - Added table error message defaults to AutoTable [#127](https://github.com/veritone/design-system/pull/127) ([@tboley-vt](https://github.com/tboley-vt) mjanes@veritone.com)
1577
+ - Imperative toast hook [#126](https://github.com/veritone/design-system/pull/126) ([@tboley-vt](https://github.com/tboley-vt) mjanes@veritone.com)
1578
+
1579
+ #### Authors: 2
1580
+
1581
+ - Mike Janes (mjanes@veritone.com)
1582
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1583
+
1584
+ ---
1585
+
1586
+ # v1.12.50 (Mon Nov 20 2023)
1587
+
1588
+
1589
+
1590
+ ---
1591
+
1592
+ # v1.12.49 (Fri Nov 17 2023)
1593
+
1594
+ #### 🐛 Bug Fix
1595
+
1596
+ - add onChange to Autocomplete [#125](https://github.com/veritone/design-system/pull/125) (mjanes@veritone.com)
1597
+
1598
+ #### Authors: 1
1599
+
1600
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1601
+
1602
+ ---
1603
+
1604
+ # v1.12.48 (Wed Nov 15 2023)
1605
+
1606
+ #### 🐛 Bug Fix
1607
+
1608
+ - AutoTable v1.0-alpha [#121](https://github.com/veritone/design-system/pull/121) ([@tboley-vt](https://github.com/tboley-vt))
1609
+
1610
+ #### Authors: 1
1611
+
1612
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1613
+
1614
+ ---
1615
+
1616
+ # v1.12.47 (Mon Nov 13 2023)
1617
+
1618
+ #### 🐛 Bug Fix
1619
+
1620
+ - Fix/revised file uploader [#124](https://github.com/veritone/design-system/pull/124) ([@tboley-vt](https://github.com/tboley-vt))
1621
+ - Revised file uploader [#123](https://github.com/veritone/design-system/pull/123) ([@tboley-vt](https://github.com/tboley-vt))
1622
+
1623
+ #### Authors: 1
1624
+
1625
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1626
+
1627
+ ---
1628
+
1629
+ # v1.12.46 (Mon Nov 13 2023)
1630
+
1631
+ #### 🐛 Bug Fix
1632
+
1633
+ - Added next.js support by removing type: module package.json field [#122](https://github.com/veritone/design-system/pull/122) ([@tboley-vt](https://github.com/tboley-vt))
1634
+
1635
+ #### Authors: 1
1636
+
1637
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1638
+
1639
+ ---
1640
+
1641
+ # v1.12.45 (Fri Nov 03 2023)
1642
+
1643
+ #### 🐛 Bug Fix
1644
+
1645
+ - Feature/table pagination [#120](https://github.com/veritone/design-system/pull/120) (mjanes@veritone.com [@tboley-vt](https://github.com/tboley-vt))
1646
+
1647
+ #### Authors: 2
1648
+
1649
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1650
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1651
+
1652
+ ---
1653
+
1654
+ # v1.12.42 (Tue Oct 31 2023)
1655
+
1656
+ #### 🐛 Bug Fix
1657
+
1658
+ - Simplified file uploader to use new async generator method [#119](https://github.com/veritone/design-system/pull/119) ([@tboley-vt](https://github.com/tboley-vt))
1659
+ - Update deploy.yml to disable autodeploy [#118](https://github.com/veritone/design-system/pull/118) ([@tboley-vt](https://github.com/tboley-vt))
1660
+ - add on change [#117](https://github.com/veritone/design-system/pull/117) (mjanes@veritone.com)
1661
+
1662
+ #### Authors: 2
1663
+
1664
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1665
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1666
+
1667
+ ---
1668
+
1669
+ # v1.12.42 (Tue Oct 31 2023)
1670
+
1671
+ #### 🐛 Bug Fix
1672
+
1673
+ - Simplified file uploader to use new async generator method [#119](https://github.com/veritone/design-system/pull/119) ([@tboley-vt](https://github.com/tboley-vt))
1674
+ - Update deploy.yml to disable autodeploy [#118](https://github.com/veritone/design-system/pull/118) ([@tboley-vt](https://github.com/tboley-vt))
1675
+ - add on change [#117](https://github.com/veritone/design-system/pull/117) (mjanes@veritone.com)
1676
+
1677
+ #### Authors: 2
1678
+
1679
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1680
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1681
+
1682
+ ---
1683
+
1684
+ # v1.12.41 (Mon Oct 23 2023)
1685
+
1686
+ #### 🐛 Bug Fix
1687
+
1688
+ - export autocomplete [#116](https://github.com/veritone/design-system/pull/116) (mjanes@veritone.com)
1689
+
1690
+ #### Authors: 1
1691
+
1692
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1693
+
1694
+ ---
1695
+
1696
+ # v1.12.40 (Mon Oct 23 2023)
1697
+
1698
+ #### 🐛 Bug Fix
1699
+
1700
+ - Add autocomplete [#115](https://github.com/veritone/design-system/pull/115) (mjanes@veritone.com)
1701
+
1702
+ #### Authors: 1
1703
+
1704
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1705
+
1706
+ ---
1707
+
1708
+ # v1.12.39 (Fri Oct 20 2023)
1709
+
1710
+ #### 🐛 Bug Fix
1711
+
1712
+ - Fixed eslint plugin cjs extension [#114](https://github.com/veritone/design-system/pull/114) ([@tboley-vt](https://github.com/tboley-vt))
1713
+
1714
+ #### Authors: 1
1715
+
1716
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1717
+
1718
+ ---
1719
+
1720
+ # v1.12.38 (Thu Oct 19 2023)
1721
+
1722
+ ---
1723
+
1724
+ # v1.12.37 (Thu Oct 19 2023)
1725
+
1726
+ #### 🐛 Bug Fix
1727
+
1728
+ - Removed menu flyout background (that was also affecting selects) [#113](https://github.com/veritone/design-system/pull/113) ([@tboley-vt](https://github.com/tboley-vt))
1729
+
1730
+ #### Authors: 1
1731
+
1732
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1733
+
1734
+ ---
1735
+
1736
+ # v1.12.36 (Mon Sep 18 2023)
1737
+
1738
+ #### 🐛 Bug Fix
1739
+
1740
+ - Transpiles to ES Module instead of CommonJS to support bundler treeshaking [#112](https://github.com/veritone/design-system/pull/112) ([@tboley-vt](https://github.com/tboley-vt))
1741
+
1742
+ #### Authors: 1
1743
+
1744
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1745
+
1746
+ ---
1747
+
1748
+ # v1.12.35 (Fri Sep 08 2023)
1749
+
1750
+ #### 🐛 Bug Fix
1751
+
1752
+ - fix breadcrumbs to accept a link prop [#111](https://github.com/veritone/design-system/pull/111) (mjanes@veritone.com)
1753
+
1754
+ #### Authors: 1
1755
+
1756
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1757
+
1758
+ ---
1759
+
1760
+ # v1.12.34 (Fri Sep 01 2023)
1761
+
1762
+ ---
1763
+
1764
+ # v1.12.33 (Fri Sep 01 2023)
1765
+
1766
+ #### 🐛 Bug Fix
1767
+
1768
+ - Updated sx prop to use correct theme import [#110](https://github.com/veritone/design-system/pull/110) ([@tboley-vt](https://github.com/tboley-vt))
1769
+
1770
+ #### Authors: 1
1771
+
1772
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1773
+
1774
+ ---
1775
+
1776
+ # v1.12.32 (Fri Sep 01 2023)
1777
+
1778
+ #### 🐛 Bug Fix
1779
+
1780
+ - Feature/exported eslint config [#109](https://github.com/veritone/design-system/pull/109) ([@tboley-vt](https://github.com/tboley-vt))
1781
+
1782
+ #### Authors: 1
1783
+
1784
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1785
+
1786
+ ---
1787
+
1788
+ # v1.12.30 (Fri Sep 01 2023)
1789
+
1790
+ #### 🐛 Bug Fix
1791
+
1792
+ - Feature/panel fixes [#107](https://github.com/veritone/design-system/pull/107) (mjanes@veritone.com)
1793
+
1794
+ #### Authors: 1
1795
+
1796
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1797
+
1798
+ ---
1799
+
1800
+ # v1.12.30 (Fri Sep 01 2023)
1801
+
1802
+ #### 🐛 Bug Fix
1803
+
1804
+ - Feature/panel fixes [#107](https://github.com/veritone/design-system/pull/107) (mjanes@veritone.com)
1805
+
1806
+ #### Authors: 1
1807
+
1808
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1809
+
1810
+ ---
1811
+
1812
+ # v1.12.29 (Fri Sep 01 2023)
1813
+
1814
+ #### 🐛 Bug Fix
1815
+
1816
+ - Fix/ignore idea [#108](https://github.com/veritone/design-system/pull/108) ([@tboley-vt](https://github.com/tboley-vt))
1817
+ - Feature/button fixes [#106](https://github.com/veritone/design-system/pull/106) (mjanes@veritone.com)
1818
+ - add subtitle [#105](https://github.com/veritone/design-system/pull/105) (mjanes@veritone.com)
1819
+ - Feature/design system 1.1 [#104](https://github.com/veritone/design-system/pull/104) (mjanes@veritone.com [@tboley-vt](https://github.com/tboley-vt))
1820
+ - fix table zero state height [#102](https://github.com/veritone/design-system/pull/102) (mjanes@veritone.com)
1821
+
1822
+ #### Authors: 2
1823
+
1824
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1825
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1826
+
1827
+ ---
1828
+
1829
+ # v1.12.29 (Fri Sep 01 2023)
1830
+
1831
+ #### 🐛 Bug Fix
1832
+
1833
+ - Feature/button fixes [#106](https://github.com/veritone/design-system/pull/106) (mjanes@veritone.com)
1834
+ - add subtitle [#105](https://github.com/veritone/design-system/pull/105) (mjanes@veritone.com)
1835
+ - Feature/design system 1.1 [#104](https://github.com/veritone/design-system/pull/104) (mjanes@veritone.com [@tboley-vt](https://github.com/tboley-vt))
1836
+ - fix table zero state height [#102](https://github.com/veritone/design-system/pull/102) (mjanes@veritone.com)
1837
+
1838
+ #### Authors: 2
1839
+
1840
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1841
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1842
+
1843
+ ---
1844
+
1845
+ # v1.12.28 (Fri Aug 11 2023)
1846
+
1847
+ #### 🐛 Bug Fix
1848
+
1849
+ - Feature/fixes as i go [#101](https://github.com/veritone/design-system/pull/101) (mjanes@veritone.com)
1850
+
1851
+ #### Authors: 1
1852
+
1853
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1854
+
1855
+ ---
1856
+
1857
+ # v1.12.27 (Fri Aug 11 2023)
1858
+
1859
+ #### 🐛 Bug Fix
1860
+
1861
+ - add buttons types [#100](https://github.com/veritone/design-system/pull/100) (mjanes@veritone.com)
1862
+
1863
+ #### Authors: 1
1864
+
1865
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1866
+
1867
+ ---
1868
+
1869
+ # v1.12.26 (Thu Aug 03 2023)
1870
+
1871
+ #### 🐛 Bug Fix
1872
+
1873
+ - Feature/migrate theme to ds [#99](https://github.com/veritone/design-system/pull/99) (mjanes@veritone.com)
1874
+
1875
+ #### Authors: 1
1876
+
1877
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1878
+
1879
+ ---
1880
+
1881
+ # v1.12.25 (Wed Aug 02 2023)
1882
+
1883
+ #### 🐛 Bug Fix
1884
+
1885
+ - Feature/migrate theme to ds [#98](https://github.com/veritone/design-system/pull/98) (mjanes@veritone.com)
1886
+
1887
+ #### Authors: 1
1888
+
1889
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1890
+
1891
+ ---
1892
+
1893
+ # v1.12.24 (Mon Jul 17 2023)
1894
+
1895
+ #### 🐛 Bug Fix
1896
+
1897
+ - Feature/build process improvements (minor fixes) [#97](https://github.com/veritone/design-system/pull/97) ([@tboley-vt](https://github.com/tboley-vt))
1898
+
1899
+ #### Authors: 1
1900
+
1901
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1902
+
1903
+ ---
1904
+
1905
+ # v1.12.23 (Mon Jul 17 2023)
1906
+
1907
+ #### 🐛 Bug Fix
1908
+
1909
+ - Build process improvements [#96](https://github.com/veritone/design-system/pull/96) ([@tboley-vt](https://github.com/tboley-vt))
1910
+
1911
+ #### Authors: 1
1912
+
1913
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1914
+
1915
+ ---
1916
+
1917
+ # v1.12.22 (Fri Jul 14 2023)
1918
+
1919
+ #### 🐛 Bug Fix
1920
+
1921
+ - Fix/lib setup [#95](https://github.com/veritone/design-system/pull/95) ([@tboley-vt](https://github.com/tboley-vt))
1922
+
1923
+ #### Authors: 1
1924
+
1925
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1926
+
1927
+ ---
1928
+
1929
+ # v1.12.21 (Fri Jul 14 2023)
1930
+
1931
+ #### 🐛 Bug Fix
1932
+
1933
+ - WIP [#94](https://github.com/veritone/design-system/pull/94) (mjanes@veritone.com)
1934
+ - fix exports to include missing components [#93](https://github.com/veritone/design-system/pull/93) (mjanes@veritone.com)
1935
+ - Tabs now displaying corectly [#92](https://github.com/veritone/design-system/pull/92) (mjanes@veritone.com)
1936
+
1937
+ #### Authors: 1
1938
+
1939
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1940
+
1941
+ ---
1942
+
1943
+ # v1.12.20 (Mon May 15 2023)
1944
+
1945
+ #### 🐛 Bug Fix
1946
+
1947
+ - Mui props ordering [#91](https://github.com/veritone/design-system/pull/91) (mjanes@veritone.com)
1948
+
1949
+ #### Authors: 1
1950
+
1951
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1952
+
1953
+ ---
1954
+
1955
+ # v1.12.19 (Mon May 15 2023)
1956
+
1957
+ #### 🐛 Bug Fix
1958
+
1959
+ - change props order [#90](https://github.com/veritone/design-system/pull/90) (mjanes@veritone.com)
1960
+
1961
+ #### Authors: 1
1962
+
1963
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1964
+
1965
+ ---
1966
+
1967
+ # v1.12.18 (Thu May 11 2023)
1968
+
1969
+ #### 🐛 Bug Fix
1970
+
1971
+ - Added typescript declaration emit [#89](https://github.com/veritone/design-system/pull/89) ([@tboley-vt](https://github.com/tboley-vt))
1972
+
1973
+ #### Authors: 1
1974
+
1975
+ - Teo Boley VT ([@tboley-vt](https://github.com/tboley-vt))
1976
+
1977
+ ---
1978
+
1979
+ # v1.12.17 (Thu May 11 2023)
1980
+
1981
+ #### 🐛 Bug Fix
1982
+
1983
+ - add svg handler for node [#88](https://github.com/veritone/design-system/pull/88) (mjanes@veritone.com)
1984
+
1985
+ #### Authors: 1
1986
+
1987
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
1988
+
1989
+ ---
1990
+
1991
+ # v1.12.16 (Thu May 11 2023)
1992
+
1993
+ #### 🐛 Bug Fix
1994
+
1995
+ - add babel to work with old node versions [#87](https://github.com/veritone/design-system/pull/87) (mjanes@veritone.com)
1996
+
1997
+ #### Authors: 1
1998
+
1999
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2000
+
2001
+ ---
2002
+
2003
+ # v1.12.15 (Wed May 10 2023)
2004
+
2005
+ #### 🐛 Bug Fix
2006
+
2007
+ - Feature/fix props [#86](https://github.com/veritone/design-system/pull/86) (mjanes@veritone.com)
2008
+
2009
+ #### Authors: 1
2010
+
2011
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2012
+
2013
+ ---
2014
+
2015
+ # v1.12.14 (Tue May 09 2023)
2016
+
2017
+ #### 🐛 Bug Fix
2018
+
2019
+ - Fix props ordering [#85](https://github.com/veritone/design-system/pull/85) (mjanes@veritone.com)
2020
+
2021
+ #### Authors: 1
2022
+
2023
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2024
+
2025
+ ---
2026
+
2027
+ # v1.12.13 (Tue May 02 2023)
2028
+
2029
+ #### 🐛 Bug Fix
2030
+
2031
+ - add svg assets to dist folder for prod npm [#84](https://github.com/veritone/design-system/pull/84) (mjanes@veritone.com)
2032
+
2033
+ #### Authors: 1
2034
+
2035
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2036
+
2037
+ ---
2038
+
2039
+ # v1.12.12 (Mon May 01 2023)
2040
+
2041
+ #### 🐛 Bug Fix
2042
+
2043
+ - Feature/fix main errors [#83](https://github.com/veritone/design-system/pull/83) (mjanes@veritone.com)
2044
+
2045
+ #### Authors: 1
2046
+
2047
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2048
+
2049
+ ---
2050
+
2051
+ # v1.12.11 (Mon May 01 2023)
2052
+
2053
+ #### 🐛 Bug Fix
2054
+
2055
+ - revert module file [#82](https://github.com/veritone/design-system/pull/82) (mjanes@veritone.com)
2056
+ - Feature/fix npm errors [#79](https://github.com/veritone/design-system/pull/79) (mjanes@veritone.com)
2057
+ - Fix module not found for resources [#78](https://github.com/veritone/design-system/pull/78) (mjanes@veritone.com)
2058
+
2059
+ #### Authors: 1
2060
+
2061
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2062
+
2063
+ ---
2064
+
2065
+ # v1.12.10 (Mon May 01 2023)
2066
+
2067
+ #### 🐛 Bug Fix
2068
+
2069
+ - Feature/audio slider [#77](https://github.com/veritone/design-system/pull/77) (mjanes@veritone.com)
2070
+
2071
+ #### Authors: 1
2072
+
2073
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2074
+
2075
+ ---
2076
+
2077
+ # v1.12.9 (Wed Mar 01 2023)
2078
+
2079
+ #### 🐛 Bug Fix
2080
+
2081
+ - Feature/vv 672 menu flyout component [#68](https://github.com/veritone/design-system/pull/68) ([@justicejessica](https://github.com/justicejessica) mjanes@veritone.com)
2082
+
2083
+ #### Authors: 2
2084
+
2085
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
2086
+ - Mike Janes (mjanes@veritone.com)
2087
+
2088
+ ---
2089
+
2090
+ # v1.12.8 (Wed Mar 01 2023)
2091
+
2092
+ #### 🐛 Bug Fix
2093
+
2094
+ - Add toast component in three variations [#67](https://github.com/veritone/design-system/pull/67) ([@kimmichurri](https://github.com/kimmichurri) mjanes@veritone.com)
2095
+ - Feature/vv 818 breadcrumbs [#66](https://github.com/veritone/design-system/pull/66) (mjanes@veritone.com)
2096
+ - VV-844 Create Linear Progress Component [#70](https://github.com/veritone/design-system/pull/70) ([@kimmichurri](https://github.com/kimmichurri))
2097
+
2098
+ #### Authors: 2
2099
+
2100
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
2101
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2102
+
2103
+ ---
2104
+
2105
+ # v1.12.7 (Wed Feb 01 2023)
2106
+
2107
+ #### 🐛 Bug Fix
2108
+
2109
+ - add checklist item to PR template, add code coverage report on PR [#64](https://github.com/veritone/design-system/pull/64) ([@CodyMoore240](https://github.com/CodyMoore240))
2110
+
2111
+ #### Authors: 1
2112
+
2113
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2114
+
2115
+ ---
2116
+
2117
+ # v1.12.6 (Wed Feb 01 2023)
2118
+
2119
+ #### 🐛 Bug Fix
2120
+
2121
+ - [VV-669] [Storybook] UtilityRail component [#73](https://github.com/veritone/design-system/pull/73) ([@GiovaniBiagi](https://github.com/GiovaniBiagi))
2122
+
2123
+ #### Authors: 1
2124
+
2125
+ - [@GiovaniBiagi](https://github.com/GiovaniBiagi)
2126
+
2127
+ ---
2128
+
2129
+ # v1.12.5 (Tue Jan 31 2023)
2130
+
2131
+ #### 🐛 Bug Fix
2132
+
2133
+ - VVT-23: [VV-670] [Storybook] Create ModelGridView component [#72](https://github.com/veritone/design-system/pull/72) ([@wandertorres](https://github.com/wandertorres))
2134
+
2135
+ #### Authors: 1
2136
+
2137
+ - Wander Torres ([@wandertorres](https://github.com/wandertorres))
2138
+
2139
+ ---
2140
+
2141
+ # v1.12.4 (Mon Jan 30 2023)
2142
+
2143
+ #### 🐛 Bug Fix
2144
+
2145
+ - fix(icon list item): adds children props to list item icon [#71](https://github.com/veritone/design-system/pull/71) (giuliane.oliveira@nave.rs [@GiulianeOliveira](https://github.com/GiulianeOliveira))
2146
+
2147
+ #### Authors: 2
2148
+
2149
+ - Giuliane ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2150
+ - Giuliane Oliveira (giuliane.oliveira@nave.rs)
2151
+
2152
+ ---
2153
+
2154
+ # v1.12.3 (Thu Jan 26 2023)
2155
+
2156
+ #### 🐛 Bug Fix
2157
+
2158
+ - Fix/unitests [#65](https://github.com/veritone/design-system/pull/65) ([@wandertorres](https://github.com/wandertorres))
2159
+
2160
+ #### Authors: 1
2161
+
2162
+ - Wander Torres ([@wandertorres](https://github.com/wandertorres))
2163
+
2164
+ ---
2165
+
2166
+ # v1.12.2 (Thu Jan 26 2023)
2167
+
2168
+ #### 🐛 Bug Fix
2169
+
2170
+ - VVT-34: Search for imports that haven't come from Design System [#69](https://github.com/veritone/design-system/pull/69) (giuliane.oliveira@nave.rs [@GiulianeOliveira](https://github.com/GiulianeOliveira))
2171
+
2172
+ #### Authors: 2
2173
+
2174
+ - Giuliane ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2175
+ - Giuliane Oliveira (giuliane.oliveira@nave.rs)
2176
+
2177
+ ---
2178
+
2179
+ # v1.12.1 (Fri Jan 13 2023)
2180
+
2181
+ #### 🐛 Bug Fix
2182
+
2183
+ - export Stepper [#63](https://github.com/veritone/design-system/pull/63) ([@CodyMoore240](https://github.com/CodyMoore240))
2184
+
2185
+ #### Authors: 1
2186
+
2187
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2188
+
2189
+ ---
2190
+
2191
+ # v1.12.0 (Fri Jan 13 2023)
2192
+
2193
+ #### 🚀 Enhancement
2194
+
2195
+ - VV-808 Adjust step connector border color and add default prop for step [#59](https://github.com/veritone/design-system/pull/59) ([@kimmichurri](https://github.com/kimmichurri) [@CodyMoore240](https://github.com/CodyMoore240))
2196
+
2197
+ #### Authors: 2
2198
+
2199
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2200
+ - Kim Myers ([@kimmichurri](https://github.com/kimmichurri))
2201
+
2202
+ ---
2203
+
2204
+ # v1.11.2 (Thu Jan 12 2023)
2205
+
2206
+ #### 🐛 Bug Fix
2207
+
2208
+ - fix(index): exports all components in the index file [#62](https://github.com/veritone/design-system/pull/62) ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2209
+
2210
+ #### Authors: 1
2211
+
2212
+ - Giuliane ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2213
+
2214
+ ---
2215
+
2216
+ # v1.11.1 (Thu Jan 12 2023)
2217
+
2218
+ #### 🐛 Bug Fix
2219
+
2220
+ - Fix/tests: Prepare CI action to handle tests on their pipeline [#61](https://github.com/veritone/design-system/pull/61) ([@erickpeixoto](https://github.com/erickpeixoto))
2221
+
2222
+ #### Authors: 1
2223
+
2224
+ - Erick Eduardo ([@erickpeixoto](https://github.com/erickpeixoto))
2225
+
2226
+ ---
2227
+
2228
+ # v1.11.0 (Wed Jan 11 2023)
2229
+
2230
+ #### 🚀 Enhancement
2231
+
2232
+ - VVT-8: [VV-685] Create Modal component [#47](https://github.com/veritone/design-system/pull/47) ([@GiulianeOliveira](https://github.com/GiulianeOliveira) [@CodyMoore240](https://github.com/CodyMoore240))
2233
+
2234
+ #### Authors: 2
2235
+
2236
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2237
+ - Giuliane ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2238
+
2239
+ ---
2240
+
2241
+ # v1.9.0 (Wed Jan 11 2023)
2242
+
2243
+ #### 🚀 Enhancement
2244
+
2245
+ - Feature/vv 671 create status chip component [#56](https://github.com/veritone/design-system/pull/56) ([@justicejessica](https://github.com/justicejessica) [@CodyMoore240](https://github.com/CodyMoore240) [@erickpeixoto](https://github.com/erickpeixoto))
2246
+ - Feature/vv 819 tabs [#57](https://github.com/veritone/design-system/pull/57) (mjanes@veritone.com)
2247
+
2248
+ #### ⚠️ Pushed to `main`
2249
+
2250
+ - chore: update PR template ([@CodyMoore240](https://github.com/CodyMoore240))
2251
+
2252
+ #### Authors: 4
2253
+
2254
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2255
+ - Erick Eduardo ([@erickpeixoto](https://github.com/erickpeixoto))
2256
+ - Jessica Justice ([@justicejessica](https://github.com/justicejessica))
2257
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2258
+
2259
+ ---
2260
+
2261
+ # v1.8.0 (Tue Jan 10 2023)
2262
+
2263
+ #### 🚀 Enhancement
2264
+
2265
+ - VVT-16: Create Wrapper Component [#40](https://github.com/veritone/design-system/pull/40) ([@GiulianeOliveira](https://github.com/GiulianeOliveira) [@CodyMoore240](https://github.com/CodyMoore240))
2266
+
2267
+ #### Authors: 2
2268
+
2269
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2270
+ - Giuliane ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2271
+
2272
+ ---
2273
+
2274
+ # v1.7.1 (Tue Jan 10 2023)
2275
+
2276
+ #### 🐛 Bug Fix
2277
+
2278
+ - fix: no longer use sx prop in theme [#58](https://github.com/veritone/design-system/pull/58) ([@CodyMoore240](https://github.com/CodyMoore240))
2279
+
2280
+ #### Authors: 1
2281
+
2282
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2283
+
2284
+ ---
2285
+
2286
+ # v1.7.0 (Tue Jan 10 2023)
2287
+
2288
+ #### 🚀 Enhancement
2289
+
2290
+ - VVT-6: [VV-682] Create Select component [#42](https://github.com/veritone/design-system/pull/42) ([@wandertorres](https://github.com/wandertorres))
2291
+ - Feature/vv 820 progress indicator [#55](https://github.com/veritone/design-system/pull/55) (mjanes@veritone.com)
2292
+
2293
+ #### Authors: 2
2294
+
2295
+ - Mike Janes ([@MikeJDev](https://github.com/MikeJDev))
2296
+ - Wander Torres ([@wandertorres](https://github.com/wandertorres))
2297
+
2298
+ ---
2299
+
2300
+ # v1.6.0 (Tue Jan 10 2023)
2301
+
2302
+ #### 🚀 Enhancement
2303
+
2304
+ - VVT-7: Create Input component [#39](https://github.com/veritone/design-system/pull/39) ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2305
+
2306
+ #### Authors: 1
2307
+
2308
+ - Giuliane ([@GiulianeOliveira](https://github.com/GiulianeOliveira))
2309
+
2310
+ ---
2311
+
2312
+ # v1.5.0 (Tue Jan 10 2023)
2313
+
2314
+ #### 🚀 Enhancement
2315
+
2316
+ - VVT-9: [VV-687] Create Checkbox component [#38](https://github.com/veritone/design-system/pull/38) ([@wandertorres](https://github.com/wandertorres) [@erickpeixoto](https://github.com/erickpeixoto))
2317
+
2318
+ #### Authors: 2
2319
+
2320
+ - Erick Eduardo ([@erickpeixoto](https://github.com/erickpeixoto))
2321
+ - Wander Torres ([@wandertorres](https://github.com/wandertorres))
2322
+
2323
+ ---
2324
+
2325
+ # v1.4.0 (Tue Jan 10 2023)
2326
+
2327
+ #### 🚀 Enhancement
2328
+
2329
+ - VVT-10: [VV-688] Create RadioButton component [#44](https://github.com/veritone/design-system/pull/44) ([@GuilhermeFT](https://github.com/GuilhermeFT) [@CodyMoore240](https://github.com/CodyMoore240) [@erickpeixoto](https://github.com/erickpeixoto))
2330
+
2331
+ #### Authors: 3
2332
+
2333
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2334
+ - Erick Eduardo ([@erickpeixoto](https://github.com/erickpeixoto))
2335
+ - Guilherme F. Trindade ([@GuilhermeFT](https://github.com/GuilhermeFT))
2336
+
2337
+ ---
2338
+
2339
+ # v1.3.1 (Mon Jan 09 2023)
2340
+
2341
+ #### 🐛 Bug Fix
2342
+
2343
+ - VVT-26: add prefix to all paths of design system project [#51](https://github.com/veritone/design-system/pull/51) ([@GuilhermeFT](https://github.com/GuilhermeFT))
2344
+
2345
+ #### Authors: 1
2346
+
2347
+ - Guilherme F. Trindade ([@GuilhermeFT](https://github.com/GuilhermeFT))
2348
+
2349
+ ---
2350
+
2351
+ # v1.3.0 (Thu Jan 05 2023)
2352
+
2353
+ #### 🚀 Enhancement
2354
+
2355
+ - VVT-5: [VV-639] Create FileUploader component [#41](https://github.com/veritone/design-system/pull/41) ([@GuilhermeFT](https://github.com/GuilhermeFT))
2356
+
2357
+ #### Authors: 1
2358
+
2359
+ - Guilherme F. Trindade ([@GuilhermeFT](https://github.com/GuilhermeFT))
2360
+
2361
+ ---
2362
+
2363
+ # v1.2.3 (Tue Jan 03 2023)
2364
+
2365
+ #### 🐛 Bug Fix
2366
+
2367
+ - Bugfix/structural [#49](https://github.com/veritone/design-system/pull/49) ([@GuilhermeFT](https://github.com/GuilhermeFT))
2368
+
2369
+ #### Authors: 1
2370
+
2371
+ - Guilherme F. Trindade ([@GuilhermeFT](https://github.com/GuilhermeFT))
2372
+
2373
+ ---
2374
+
2375
+ # v1.2.2 (Tue Dec 20 2022)
2376
+
2377
+ #### ⚠️ Pushed to `main`
2378
+
2379
+ - chore(structural): add fix to pre-push command for window OS ([@GuilhermeFT](https://github.com/GuilhermeFT))
2380
+
2381
+ #### Authors: 1
2382
+
2383
+ - Guilherme F. Trindade ([@GuilhermeFT](https://github.com/GuilhermeFT))
2384
+
2385
+ ---
2386
+
2387
+ # v1.2.1 (Tue Dec 20 2022)
2388
+
2389
+ #### 🐛 Bug Fix
2390
+
2391
+ - Chore/structural: New QA Process [#48](https://github.com/veritone/design-system/pull/48) ([@erickpeixoto](https://github.com/erickpeixoto))
2392
+
2393
+ #### Authors: 1
2394
+
2395
+ - Erick Eduardo ([@erickpeixoto](https://github.com/erickpeixoto))
2396
+
2397
+ ---
2398
+
2399
+ # v1.2.0 (Wed Dec 14 2022)
2400
+
2401
+ #### 🚀 Enhancement
2402
+
2403
+ - break out button portion of the theme [#45](https://github.com/veritone/design-system/pull/45) ([@CodyMoore240](https://github.com/CodyMoore240))
2404
+
2405
+ #### Authors: 1
2406
+
2407
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2408
+
2409
+ ---
2410
+
2411
+ # v1.1.0 (Fri Dec 02 2022)
2412
+
2413
+ #### 🚀 Enhancement
2414
+
2415
+ - Feature/VVT-15 - Project Foundation [#35](https://github.com/veritone/design-system/pull/35) ([@GuilhermeFT](https://github.com/GuilhermeFT))
2416
+
2417
+ #### Authors: 1
2418
+
2419
+ - Guilherme F. Trindade ([@GuilhermeFT](https://github.com/GuilhermeFT))
2420
+
2421
+ ---
2422
+
2423
+ # v1.0.2 (Thu Nov 17 2022)
2424
+
2425
+ #### 🐛 Bug Fix
2426
+
2427
+ - add file generators [#34](https://github.com/veritone/design-system/pull/34) ([@CodyMoore240](https://github.com/CodyMoore240))
2428
+
2429
+ #### Authors: 1
2430
+
2431
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2432
+
2433
+ ---
2434
+
2435
+ # v1.0.1 (Tue Nov 15 2022)
2436
+
2437
+ #### 🐛 Bug Fix
2438
+
2439
+ - remove second export statement [#32](https://github.com/veritone/design-system/pull/32) ([@CodyMoore240](https://github.com/CodyMoore240))
2440
+
2441
+ #### Authors: 1
2442
+
2443
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2444
+
2445
+ ---
2446
+
2447
+ # v1.0.0 (Tue Oct 25 2022)
2448
+
2449
+ #### 💥 Breaking Change
2450
+
2451
+ - change padding on button text [#30](https://github.com/veritone/design-system/pull/30) ([@CodyMoore240](https://github.com/CodyMoore240))
2452
+
2453
+ #### Authors: 1
2454
+
2455
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2456
+
2457
+ ---
2458
+
2459
+ # v0.9.26 (Mon Oct 24 2022)
2460
+
2461
+ #### 🐛 Bug Fix
2462
+
2463
+ - test no change PR [#29](https://github.com/veritone/design-system/pull/29) ([@CodyMoore240](https://github.com/CodyMoore240))
2464
+
2465
+ #### Authors: 1
2466
+
2467
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2468
+
2469
+ ---
2470
+
2471
+ # v0.9.25 (Mon Oct 24 2022)
2472
+
2473
+ #### 🐛 Bug Fix
2474
+
2475
+ - add to Get Started Section [#28](https://github.com/veritone/design-system/pull/28) ([@CodyMoore240](https://github.com/CodyMoore240))
2476
+
2477
+ #### ⚠️ Pushed to `main`
2478
+
2479
+ - Merge remote-tracking branch 'origin/main' into main ([@CodyMoore240](https://github.com/CodyMoore240))
2480
+ - change deploy workflow ([@CodyMoore240](https://github.com/CodyMoore240))
2481
+
2482
+ #### Authors: 1
2483
+
2484
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2485
+
2486
+ ---
2487
+
2488
+ # v0.9.24 (Mon Oct 24 2022)
2489
+
2490
+ #### 🐛 Bug Fix
2491
+
2492
+ - add section to README [#27](https://github.com/veritone/design-system/pull/27) ([@CodyMoore240](https://github.com/CodyMoore240))
2493
+
2494
+ #### Authors: 1
2495
+
2496
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2497
+
2498
+ ---
2499
+
2500
+ # v0.9.23 (Thu Oct 20 2022)
2501
+
2502
+ #### 🐛 Bug Fix
2503
+
2504
+ - remove s [#26](https://github.com/veritone/design-system/pull/26) ([@CodyMoore240](https://github.com/CodyMoore240))
2505
+
2506
+ #### Authors: 1
2507
+
2508
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2509
+
2510
+ ---
2511
+
2512
+ # v0.9.22 (Wed Oct 19 2022)
2513
+
2514
+ #### 🐛 Bug Fix
2515
+
2516
+ - add s [#25](https://github.com/veritone/design-system/pull/25) ([@CodyMoore240](https://github.com/CodyMoore240))
2517
+
2518
+ #### Authors: 1
2519
+
2520
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2521
+
2522
+ ---
2523
+
2524
+ # v0.9.21 (Wed Oct 19 2022)
2525
+
2526
+ #### 🐛 Bug Fix
2527
+
2528
+ - text change [#23](https://github.com/veritone/design-system/pull/23) ([@CodyMoore240](https://github.com/CodyMoore240))
2529
+
2530
+ #### Authors: 1
2531
+
2532
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2533
+
2534
+ ---
2535
+
2536
+ # v0.9.20 (Wed Oct 19 2022)
2537
+
2538
+ #### 🐛 Bug Fix
2539
+
2540
+ - remove box, test change [#22](https://github.com/veritone/design-system/pull/22) ([@CodyMoore240](https://github.com/CodyMoore240))
2541
+ - remove box [#21](https://github.com/veritone/design-system/pull/21) ([@CodyMoore240](https://github.com/CodyMoore240) runner@fv-az278-55.nowaiimkoolevpdf3f3lgehyfh.jx.internal.cloudapp.net)
2542
+ - add box [#19](https://github.com/veritone/design-system/pull/19) ([@CodyMoore240](https://github.com/CodyMoore240))
2543
+
2544
+ #### Authors: 2
2545
+
2546
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2547
+ - Veritone (runner@fv-az278-55.nowaiimkoolevpdf3f3lgehyfh.jx.internal.cloudapp.net)
2548
+
2549
+ ---
2550
+
2551
+ # v0.9.17 (Wed Oct 19 2022)
2552
+
2553
+ #### 🐛 Bug Fix
2554
+
2555
+ - add box [#19](https://github.com/veritone/design-system/pull/19) ([@CodyMoore240](https://github.com/CodyMoore240))
2556
+ - Feature/button layout [#18](https://github.com/veritone/design-system/pull/18) ([@CodyMoore240](https://github.com/CodyMoore240))
2557
+
2558
+ #### Authors: 1
2559
+
2560
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2561
+
2562
+ ---
2563
+
2564
+ # v0.9.16 (Wed Oct 12 2022)
2565
+
2566
+ #### 🐛 Bug Fix
2567
+
2568
+ - add chromatic link [#17](https://github.com/veritone/design-system/pull/17) ([@CodyMoore240](https://github.com/CodyMoore240))
2569
+
2570
+ #### Authors: 1
2571
+
2572
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2573
+
2574
+ ---
2575
+
2576
+ # v0.9.15 (Wed Oct 12 2022)
2577
+
2578
+ #### 🐛 Bug Fix
2579
+
2580
+ - edit README [#15](https://github.com/veritone/design-system/pull/15) ([@CodyMoore240](https://github.com/CodyMoore240))
2581
+
2582
+ #### Authors: 1
2583
+
2584
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2585
+
2586
+ ---
2587
+
2588
+ # v0.9.14 (Tue Oct 11 2022)
2589
+
2590
+ #### 🐛 Bug Fix
2591
+
2592
+ - Feature/update readme [#14](https://github.com/veritone/design-system/pull/14) ([@CodyMoore240](https://github.com/CodyMoore240))
2593
+
2594
+ #### Authors: 1
2595
+
2596
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2597
+
2598
+ ---
2599
+
2600
+ # v0.9.12 (Tue Oct 11 2022)
2601
+
2602
+ #### 🐛 Bug Fix
2603
+
2604
+ - remove small button, change chromatic flow to trigger on main [#13](https://github.com/veritone/design-system/pull/13) ([@CodyMoore240](https://github.com/CodyMoore240))
2605
+ - Release [#12](https://github.com/veritone/design-system/pull/12) ([@CodyMoore240](https://github.com/CodyMoore240))
2606
+
2607
+ #### Authors: 1
2608
+
2609
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2610
+
2611
+ ---
2612
+
2613
+ # v0.9.11 (Fri Oct 07 2022)
2614
+
2615
+ #### 🐛 Bug Fix
2616
+
2617
+ - Release [#10](https://github.com/veritone/design-system/pull/10) ([@CodyMoore240](https://github.com/CodyMoore240))
2618
+ - release [#9](https://github.com/veritone/design-system/pull/9) ([@CodyMoore240](https://github.com/CodyMoore240))
2619
+ - Release to Prod [#6](https://github.com/veritone/design-system/pull/6) ([@CodyMoore240](https://github.com/CodyMoore240))
2620
+
2621
+ #### ⚠️ Pushed to `main`
2622
+
2623
+ - trigger workflow ([@CodyMoore240](https://github.com/CodyMoore240))
2624
+ - change name ([@CodyMoore240](https://github.com/CodyMoore240))
2625
+ - test deploy workflow ([@CodyMoore240](https://github.com/CodyMoore240))
2626
+ - clear out ([@CodyMoore240](https://github.com/CodyMoore240))
2627
+ - Initial commit ([@CodyMoore240](https://github.com/CodyMoore240))
2628
+
2629
+ #### Authors: 1
2630
+
2631
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))
2632
+
2633
+ ---
2634
+
2635
+ # v0.9.0 (Wed Oct 05 2022)
2636
+
2637
+ - Created first version of the design system, with `Button`, and `ThemeProvider` components.
2638
+
2639
+ #### Authors: 1
2640
+
2641
+ - Cody Moore ([@CodyMoore240](https://github.com/CodyMoore240))