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